/** * Represents resizable tokens to hide content that can be applied to Framework Components */ export declare enum DESIGN_RESIZEABLE { x = "x", y = "y" } export declare const DESIGN_RESIZEABLE_LITERALS: { readonly x: DESIGN_RESIZEABLE.x; readonly y: DESIGN_RESIZEABLE.y; }; export declare type DESIGN_RESIZEABLE_ARGUMENT = boolean | keyof typeof DESIGN_RESIZEABLE_LITERALS;