/** * Media Query API Polyfill for Testing */ export interface MockMediaQueryList { matches: boolean; media: string; onchange: ((this: MediaQueryList, ev: MediaQueryListEvent) => any) | null; addListener: () => void; removeListener: () => void; addEventListener: () => void; removeEventListener: () => void; dispatchEvent: () => boolean; } export declare function setupMatchMedia(globalScope?: any): void; //# sourceMappingURL=mediaQueryPolyfill.d.ts.map