import { Dict } from "./types"; export declare const breakpoints: readonly string[]; export declare function mapResponsive(prop: any, mapper: (val: any) => any): any; export declare function objectToArrayNotation(obj: Dict, bps?: readonly string[]): any[]; export declare function arrayToObjectNotation(values: any[], bps?: readonly string[]): Record; export declare function isResponsiveObjectLike(obj: Dict, bps?: readonly string[]): boolean;