import type { Component } from 'svelte'; import type { ALLOWED_BREAKPOINTS } from '../../../types'; type BreakpointOption = { label: string; description: string; icon: Component; }; export type BreakpointOptions = { [K in ALLOWED_BREAKPOINTS]: BreakpointOption; }; export declare const breakpointOptions: BreakpointOptions; export {};