/** * Represents the tiers of animations tokens that can be applied to Framework Components */ export declare enum DESIGN_ANIMATION { pulse = "pulse" } export declare const DESIGN_ANIMATION_LITERALS: { readonly pulse: DESIGN_ANIMATION.pulse; }; export declare type DESIGN_ANIMATION_ARGUMENT = keyof typeof DESIGN_ANIMATION_LITERALS;