| 1234567891011121314151617181920212223 | import { toEqualAttribute, toEqualAttributes, toHaveAttribute } from './attributes';import { toHaveClass, toHaveClasses, toMatchClasses } from './class-list';import { toHaveFirstReceivedEventDetail, toHaveNthReceivedEventDetail, toHaveReceivedEvent, toHaveReceivedEventDetail, toHaveReceivedEventTimes } from './events';import { toEqualHtml, toEqualLightHtml } from './html';import { toMatchScreenshot } from './screenshot';import { toEqualText } from './text';export declare const expectExtend: {    toEqualAttribute: typeof toEqualAttribute;    toEqualAttributes: typeof toEqualAttributes;    toEqualHtml: typeof toEqualHtml;    toEqualLightHtml: typeof toEqualLightHtml;    toEqualText: typeof toEqualText;    toHaveAttribute: typeof toHaveAttribute;    toHaveClass: typeof toHaveClass;    toHaveClasses: typeof toHaveClasses;    toMatchClasses: typeof toMatchClasses;    toHaveReceivedEvent: typeof toHaveReceivedEvent;    toHaveReceivedEventDetail: typeof toHaveReceivedEventDetail;    toHaveReceivedEventTimes: typeof toHaveReceivedEventTimes;    toHaveFirstReceivedEventDetail: typeof toHaveFirstReceivedEventDetail;    toHaveNthReceivedEventDetail: typeof toHaveNthReceivedEventDetail;    toMatchScreenshot: typeof toMatchScreenshot;};
 |