import type { BreakpointsOptions } from '@mui/system'; /** * Customized breakpoints for Material-UI Design System. * (https://mui.com/material-ui/customization/breakpoints) * * - `xs`: extra-small, mobile device * - `sm`: small, small tablet device * - `md`: medium, tablet device * - `lg`: large, laptop device * - `xl`: extra-large, desktop device */ type HeightBreakPointOptions = { height: { tablet: number; notebook: number; desktop: number; }; }; type AIDTBreakpointsOptions = BreakpointsOptions & HeightBreakPointOptions; export declare const AIDTBreakpoints: AIDTBreakpointsOptions; export {};