export declare const ResponsiveWidthConst_Name = "ResponsiveWidthConst";
export declare const ResponsiveWidthConstType_Name = "ResponsiveWidthConstType";
/**
* 响应式宽度
* 1. xs: 0 - 425px
* 2. sm: 426px - 768px
* 3. md: 769px - 992px
* 4. lg: 993px - 1200px
* 5. xl: 1201px - 1920px
*/
export declare const ResponsiveWidthConst: {
readonly xs: 425;
readonly sm: 768;
readonly md: 992;
readonly lg: 1200;
readonly xl: 1920;
};
export type ResponsiveWidthConstType = (typeof ResponsiveWidthConst)[keyof typeof ResponsiveWidthConst];