import type { Theme } from "./createTheme"; import type { Breakpoint } from "./createTheme/createBreakpoints"; import type StyledProps from "./styledProps"; export type BreakpointValueType = { [K in T]?: number | boolean | "auto"; }; export type ColumnsType = { [K in T]?: V; } | V | V[]; export type ThemeBreakpointBase = { [key in K]?: boolean | number; }; export declare const values: { xs: number; sm: number; md: number; lg: number; xl: number; }; export declare function handleBreakpoints(props: { theme: Theme; }, propValue: any[], styleFromPropValue: (value: any, breakpoint?: Breakpoint) => StyledProps): any; export declare function getOffset(val: number | string): string; export declare function computeBreakpointsBase(values: ColumnsType, breakpoints: Record): ThemeBreakpointBase; export declare function resolveBreakpointValues(data: { values: ColumnsType; breakpoints?: Record; base?: ThemeBreakpointBase; }): any; //# sourceMappingURL=breakpoints.d.ts.map