import type { ITheme } from '../theme/index'; declare type UseBreakpointValueParam = { [key in keyof ITheme['breakpoints']]?: any; } | Array; export declare function useBreakpointValue(values: UseBreakpointValueParam): any; export {};