import { BorderRadii, Intensities, Sizes, TypeSizes } from './constants'; export interface $Disabled { $disabled: boolean; } export interface $ReadOnly { $readOnly: boolean; } export declare type Color = string; export declare type Intensity = (typeof Intensities)[keyof typeof Intensities]; export declare type FieldSize = Exclude; export declare type Size = (typeof Sizes)[keyof typeof Sizes]; export declare type BorderRadius = (typeof BorderRadii)[keyof typeof BorderRadii]; export declare type TypeSize = (typeof TypeSizes)[keyof typeof TypeSizes];