/// interface Props { name: string; label?: string; placeholder?: string; } declare type PercentageInputProps = JSX.IntrinsicElements['input'] & Props; export declare function PercentageInput({ name, label, disabled, ...rest }: PercentageInputProps): JSX.Element; export {};