/// interface Props { email: string; onUpdate: (email: string) => void; } export declare const EmailInput: ({ email, onUpdate }: Props) => JSX.Element; export {};