import * as React from "react"; interface Props { dispatch: any; isRecovery?: boolean; walletTranslations: { [key: string]: any; }; LocalWallet: any; } interface State { password: string; confirmation: string; isConfirm: boolean; processing: boolean; mnemonic: string; errorMsg: string | null; } declare class Create extends React.PureComponent { constructor(props: Props); componentDidUpdate(prevProps: Props, prevState: State): void; private submit; render(): JSX.Element; private renderRecoveryInput; } declare const _default: import("react-redux").ConnectedComponent & Props, "ref" | "key" | "isRecovery">>; export default _default;