import type { ReactTestInstance } from 'react-test-renderer'; import { TextMatch, TextMatchOptions } from '../matches'; import type { FindAllByQuery, FindByQuery, GetAllByQuery, GetByQuery, QueryAllByQuery, QueryByQuery } from './makeQueries'; import { CommonQueryOptions } from './options'; type ByLabelTextOptions = CommonQueryOptions & TextMatchOptions; export type ByLabelTextQueries = { getByLabelText: GetByQuery; getAllByLabelText: GetAllByQuery; queryByLabelText: QueryByQuery; queryAllByLabelText: QueryAllByQuery; findByLabelText: FindByQuery; findAllByLabelText: FindAllByQuery; }; export declare const bindByLabelTextQueries: (instance: ReactTestInstance) => ByLabelTextQueries; export {};