import { FC } from 'react'; interface Props { onSubmit: (password: string) => void; error?: boolean; } export declare const PasswordPrompt: FC; export {};