export type Features = { blocking: boolean; breakpoints: Record; prefix: string; attributes: { component: string; option: string; ref: string; }; }; interface FeaturesMap extends Map { get(key: T): Features[T]; set(key: T, value: Features[T]): this; } export declare const features: FeaturesMap; export {};