import { StudioComponent } from '../types'; export declare const breakpointSizes: readonly ["base", "small", "medium", "large", "xl", "xxl"]; export declare type BreakpointSizeType = typeof breakpointSizes[number]; export declare const bpWeights: Record; /** * sorts the breakpoints to the following order * * ['base', 'small', 'medium', 'large', 'xl', 'xxl'] */ export declare const sortBreakpoints: (bs: BreakpointSizeType[]) => BreakpointSizeType[]; export declare const getBreakpoints: (component: StudioComponent & Required>) => ("base" | "small" | "medium" | "large" | "xl" | "xxl")[]; //# sourceMappingURL=breakpoint-utils.d.ts.map