import { Breakpoint } from "./BreakpointProvider"; export declare type ResponsiveValue = Partial> & { base?: T; }; export declare type ResponsiveProp = T | ResponsiveValue; export declare function isResponsiveObject(obj: any): boolean; export declare function parseResponsiveValue(value: T | ResponsiveValue, matchedBreakpoints: Breakpoint[]): T; export declare function useResponsiveValue(value: T | ResponsiveValue): T;