/** * MediaQueryListEvent technically has a constructor, but it's not available * in JSDOM, so we have to create this simulacrum. */ export declare class MockMediaQueryListEvent extends Event implements MediaQueryListEvent { readonly matches: boolean; readonly media: string; constructor(type: 'change', options: Pick); }