/// interface Props { id?: string | undefined; error?: string | null; } declare const InputError: ({ error, id }: Props) => JSX.Element; export default InputError;