/// interface Props { name: string; label?: string; amount?: number; } declare type PinInputProps = JSX.IntrinsicElements['input'] & Props; export declare function PinInput({ name, label, disabled, onBlur, onChange, amount, ...rest }: PinInputProps): JSX.Element; export {};