import { InputErrorProps, InputRmVariant, InputSizeType, InputVariantType } from '../../types';
export interface InputNumberLabelOutPropsModel extends InputErrorProps {
    textFieldProps?: InputRmVariant;
    colorLabel?: string;
    label?: string;
    id?: string;
    variant?: InputVariantType;
    size?: InputSizeType;
    backgroundColor?: string;
}
