/** * Represents viewport tokens to hide content that can be applied to Framework Components */ export declare enum DESIGN_HIDDEN { mobile = "mobile", tablet = "tablet", desktop = "desktop", widescreen = "widescreen" } export declare const DESIGN_HIDDEN_LITERALS: { readonly mobile: DESIGN_HIDDEN.mobile; readonly tablet: DESIGN_HIDDEN.tablet; readonly desktop: DESIGN_HIDDEN.desktop; readonly widescreen: DESIGN_HIDDEN.widescreen; }; export declare type DESIGN_HIDDEN_ARGUMENT = (boolean | keyof typeof DESIGN_HIDDEN_LITERALS) | (keyof typeof DESIGN_HIDDEN_LITERALS)[];