import { type State, type Dispatch } from '../unified-state'; export interface BreakpointWatch { startBreakpointWatch(): void; stopBreakpointWatch(): void; } export declare function breakpointWatchMixin({ dispatch, getState, subscribe: storeSubscribe, }: { dispatch: Dispatch; getState: () => State; subscribe: (listener: VoidFunction) => VoidFunction; }): BreakpointWatch; //# sourceMappingURL=breakpoint-watch.d.ts.map