import { type Dict } from "../utils"; export interface UseBreakpointOptions { fallback?: string; ssr?: boolean; getWindow?: () => typeof window; breakpoints?: string[]; } export declare function useBreakpoint(options?: UseBreakpointOptions): string; export type UseBreakpointValueOptions = Omit; type Value = Dict | Array; export declare function useBreakpointValue(value: Value, opts?: UseBreakpointValueOptions): T | undefined; export {};