/** * Represents the modes of orientation tokens that can be applied to Framework Components */ export declare enum DESIGN_ORIENTATION { horizontal = "horizontal", vertical = "vertical" } /** * Represents the modes of horizontal-based orientation tokens that can be applied to Framework Components */ export declare enum DESIGN_ORIENTATION_HORIZONTAL { vertical = "vertical" } /** * Represents the modes of vertical-based orientation tokens that can be applied to Framework Components */ export declare enum DESIGN_ORIENTATION_VERTICAL { horizontal = "horizontal" } export declare const DESIGN_ORIENTATION_LITERALS: { readonly "mobile:horizontal": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal" | "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "tablet:horizontal": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal" | "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "desktop:horizontal": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal" | "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "widescreen:horizontal": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal" | "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "mobile:vertical": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal" | "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "tablet:vertical": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal" | "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "desktop:vertical": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal" | "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "widescreen:vertical": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal" | "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly horizontal: DESIGN_ORIENTATION.horizontal; readonly vertical: DESIGN_ORIENTATION.vertical; }; export declare const DESIGN_ORIENTATION_HORIZONTAL_LITERALS: { readonly "mobile:vertical": "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "tablet:vertical": "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "desktop:vertical": "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly "widescreen:vertical": "mobile:vertical" | "tablet:vertical" | "desktop:vertical" | "widescreen:vertical"; readonly vertical: DESIGN_ORIENTATION_HORIZONTAL.vertical; }; export declare const DESIGN_ORIENTATION_VERTICAL_LITERALS: { readonly "mobile:horizontal": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal"; readonly "tablet:horizontal": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal"; readonly "desktop:horizontal": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal"; readonly "widescreen:horizontal": "mobile:horizontal" | "tablet:horizontal" | "desktop:horizontal" | "widescreen:horizontal"; readonly horizontal: DESIGN_ORIENTATION_VERTICAL.horizontal; }; export declare type DESIGN_ORIENTATION_ARGUMENT = keyof typeof DESIGN_ORIENTATION_LITERALS | (keyof typeof DESIGN_ORIENTATION_LITERALS)[]; export declare type DESIGN_ORIENTATION_HORIZONTAL_ARGUMENT = keyof typeof DESIGN_ORIENTATION_HORIZONTAL_LITERALS | (keyof typeof DESIGN_ORIENTATION_HORIZONTAL_LITERALS)[]; export declare type DESIGN_ORIENTATION_VERTICAL_ARGUMENT = keyof typeof DESIGN_ORIENTATION_VERTICAL_LITERALS | (keyof typeof DESIGN_ORIENTATION_VERTICAL_LITERALS)[];