/** * The default Webflow Breakpoint names. */ export type WebflowBreakpoint = 'main' | 'medium' | 'small' | 'tiny'; type WebflowBreakpoints = Map; /** * Defines the default media queries for Webflow's breakpoints. */ export declare const WEBFLOW_BREAKPOINTS: WebflowBreakpoints; export {};