declare const breakpoint: { phone: string; tablet: string; desktop: string; largeDesktop: string; }; export declare enum Devices { Phone = 0, Tablet = 1, Desktop = 2, LargeDesktop = 3 } export declare const phone: string; export declare const tablet: string; export declare const desktop: string; export declare const largeDesktop: string; export declare const devices: string[]; export default breakpoint;