//#region src/styled-breakpoints/create-theme/types.d.ts type Values = Record; type BreakpointsValues = { values: T; }; type Config = { errorPrefix?: string; breakpoints?: BreakpointsValues; }; //#endregion //#region src/styled-breakpoints/index.d.ts declare const createStyledBreakpointsTheme: = { readonly xs: "0px"; readonly sm: "576px"; readonly md: "768px"; readonly lg: "992px"; readonly xl: "1200px"; readonly xxl: "1400px"; }>({ errorPrefix, ...config }?: Config) => Readonly<{ breakpoints: Readonly<{ keys: readonly (keyof T & string)[]; up: (min: keyof T & string, orientation?: "landscape" | "portrait") => string; down: (max: keyof T & string, orientation?: "landscape" | "portrait") => string; between: (min: keyof T & string, max: keyof T & string, orientation?: "landscape" | "portrait") => string; only: (key: keyof T & string, orientation?: "landscape" | "portrait") => string; }>; }>; //#endregion export { createStyledBreakpointsTheme }; //# sourceMappingURL=index.d.ts.map