export type BreakpointProperty = { SP?: number; TABLET?: number; }; export type CreatedBreakpointTheme = { SP: number; TABLET: number; }; export declare const defaultBreakpoint: CreatedBreakpointTheme; export declare const createBreakpoint: (userBreakpoint?: BreakpointProperty) => CreatedBreakpointTheme;