import type { StorageName } from '#hooks'; /** * Mocks the matchMedia API * @param {boolean} matches - whether the media query matches * @example * mockMatchMedia(false) */ export declare const mockMatchMedia: (matches: ((query: string) => boolean) | boolean) => void; /** * Mocks the Storage API * @param name - The name of the storage to mock */ export declare const mockStorage: (name: StorageName) => void; //# sourceMappingURL=mocks.d.ts.map