interface SizesProps {
    height: string;
    horizontalPadding: string;
}
interface InputSizesInterface {
    [key: string]: SizesProps;
}
declare const InputSizes: InputSizesInterface;
export default InputSizes;
