/** * All available onyx breakpoints / viewports. * Key = breakpoint name, value = width in pixels. */ export declare const ONYX_BREAKPOINTS: { readonly "2xs": 320; readonly xs: 577; readonly sm: 769; readonly md: 993; readonly lg: 1441; readonly xl: 1921; }; export declare const ONYX_MAX_WIDTHS: { readonly md: number; readonly lg: number; }; export type OnyxBreakpoint = string & keyof typeof ONYX_BREAKPOINTS;