import { Fn, sizeEnum } from '../index'; type stateEnum = 'error' | 'success'; export type currentEnum = 'length' | 'width' | 'height'; export interface valueProps { length: string; width: string; height: string; } interface localeProps { length: string; width: string; height: string; tooltip: string; } export interface volumeInputProps { value?: valueProps; autoFocus?: boolean; state?: stateEnum; unit?: string; current?: currentEnum; locale?: localeProps; onChange?: Fn; onEnter?: Fn; size?: sizeEnum; }