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