import { SystemProps } from '../../system/interface'; import { OptionsType } from '../Select'; import { BlockLevelTypes } from '../Text'; export declare type SizeTypes = Extract; export interface FieldProps { label: string; message?: string; optional?: boolean; counter?: number; size?: BlockLevelTypes; labelWeight?: SystemProps['fontWeight']; isError?: boolean; disabled?: boolean; readonly?: boolean; placeholder?: string; value?: string | OptionsType[]; } export declare const sizeOptions: SizeTypes[];