export interface CheckboxData { [name: string]: boolean; } export interface SelectData { [name: string]: T; } export type Animation = keyof typeof animation; export type Size = keyof typeof size; export type Radius = keyof typeof radius; export type MessageType = 'success' | 'error' | 'warning' | 'info'; declare const radius: { readonly 'r-0': "r-0"; readonly 'r-1': "r-1"; readonly 'r-2': "r-2"; readonly 'r-3': "r-3"; readonly 'r-4': "r-4"; readonly 'r-5': "r-5"; readonly 'r-100': "r-100"; }; export declare const animation: { readonly fadeInOut: "fade-in-out"; readonly toDown: "toDown"; readonly toRight: "toRight"; readonly toLeft: "toLeft"; readonly jumpToLeft: "jumpToLeft"; readonly jumpToRight: "jumpToRight"; readonly jumpToDown: "jumpToDown"; readonly jumpToUp: "jumpToUp"; readonly toUp: "toUp"; }; declare const size: { 'sm-100': string; 'sm-200': string; 'sm-300': string; 'md-100': string; 'md-200': string; 'md-300': string; 'lg-100': string; 'lg-200': string; 'lg-300': string; 'vw-25': string; 'vw-50': string; 'vw-75': string; 'vw-100': string; }; export type SpinnerType = 'fleas' | 'squares' | 'eclipse' | 'mice' | 'dots'; export type SpinnerSize = 'sm' | 'md' | 'lg' | 'vw'; export {};