export declare const BreakPoint: {
    readonly xs: "xs";
    readonly s: "s";
    readonly m: "m";
    readonly l: "l";
    readonly xl: "xl";
};
export type BreakPoint = typeof BreakPoint[keyof typeof BreakPoint];
