export interface BaseBreakpointConfig { sm: string; md: string; lg: string; xl: string; "2xl"?: string; [key: string]: string | undefined; } export type Breakpoints = T & { base: "0em"; }; export declare const createBreakpoints: (config: T) => Breakpoints;