import type { ReactTestInstance } from 'react-test-renderer'; import { TextMatch, TextMatchOptions } from '../matches'; import type { FindAllByQuery, FindByQuery, GetAllByQuery, GetByQuery, QueryAllByQuery, QueryByQuery } from './makeQueries'; import type { CommonQueryOptions } from './options'; type ByTestIdOptions = CommonQueryOptions & TextMatchOptions; export type ByTestIdQueries = { getByTestId: GetByQuery; getAllByTestId: GetAllByQuery; queryByTestId: QueryByQuery; queryAllByTestId: QueryAllByQuery; findByTestId: FindByQuery; findAllByTestId: FindAllByQuery; }; export declare const bindByTestIdQueries: (instance: ReactTestInstance) => ByTestIdQueries; export {};