export type ButtonTheme = 'danger' | 'neutral' | 'primary-02' | undefined; export type ButtonSize = 's' | 'm' | 'l'; export type ButtonResponsiveSize = 's@from-m' | 's@from-l' | 's@from-xl' | 's@from-xxl' | 'm@from-m' | 'm@from-l' | 'm@from-xl' | 'm@from-xxl' | 'l@from-m' | 'l@from-l' | 'l@from-xl' | 'l@from-xxl' | undefined; export type ButtonResponsiveWidth = 'fit@from-m' | 'fit@from-l' | 'fit@from-xl' | 'fit@from-xxl' | 'full' | 'full@from-m' | 'full@from-l' | 'full@from-xl' | 'full@from-xxl' | undefined; export type ButtonIconMode = 'left' | 'right' | 'only' | undefined; export type ButtonType = 'button' | 'reset' | 'submit' | null | undefined; export type LoaderTheme = 'primary' | 'dark' | 'light' | undefined; export type ButtonLoader = { enabled: boolean; position: 'left' | 'right' | undefined; theme: LoaderTheme; }; //# sourceMappingURL=button.types.d.ts.map