export {};
declare global {
    namespace jest {
        interface Matchers<R, T> {
            toBeDisabled(): R;
            toContainElement(element: any | null): R;
            toBeEmpty(): R;
            toHaveProp(attr: string, value?: any): R;
            toHaveTextContent(text: string | RegExp, options?: {
                normalizeWhitespace: boolean;
            }): R;
            toBeEnabled(): R;
            toHaveStyle(style: object[] | object): R;
        }
    }
}
