export declare const IconButtonColor: { readonly ERROR: "error"; readonly INFO: "info"; readonly NEUTRAL: "neutral"; readonly SUCCESS: "success"; readonly UPGRADE: "upgrade"; readonly WARNING: "warning"; }; export type IconButtonColor = (typeof IconButtonColor)[keyof typeof IconButtonColor]; export declare const IconButtonSize: { readonly XS: "xs"; readonly SM: "sm"; readonly MD: "md"; readonly LG: "lg"; readonly XL: "xl"; }; export type IconButtonSize = (typeof IconButtonSize)[keyof typeof IconButtonSize]; export declare const IconButtonVariant: { readonly OUTLINED: "outlined"; readonly PRIMARY: "primary"; readonly TEXT: "text"; }; export type IconButtonVariant = (typeof IconButtonVariant)[keyof typeof IconButtonVariant];