/** * Core Constants Module * * This module exports all the core constants used throughout the LiquidUI component library. * These constants ensure consistency and provide centralized configuration values. */ export declare const BREAKPOINTS: { readonly xs: "0px"; readonly sm: "640px"; readonly md: "768px"; readonly lg: "1024px"; readonly xl: "1280px"; readonly "2xl": "1536px"; }; export type BreakpointKey = keyof typeof BREAKPOINTS; //# sourceMappingURL=index.d.ts.map