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