/** * Creates a mock implementation of the `window.matchMedia` function. * This is useful for changing the width of the viewport in tests without * needing to manipulate the actual browser environment. * */ export declare const createMatchMedia: (width: number) => (query: string) => MediaQueryList;