import type { ReactTestInstance } from 'react-test-renderer'; export type UnsafeByPropsQueries = { UNSAFE_getByProps: (props: { [key: string]: any; }) => ReactTestInstance; UNSAFE_getAllByProps: (props: { [key: string]: any; }) => Array; UNSAFE_queryByProps: (props: { [key: string]: any; }) => ReactTestInstance | null; UNSAFE_queryAllByProps: (props: { [key: string]: any; }) => Array; }; export declare const bindUnsafeByPropsQueries: (instance: ReactTestInstance) => UnsafeByPropsQueries;