/** * Consumes seed phrase context state; throws if the provider is missing. * @returns The current seed phrase context state. * @public */ export declare const useSeedPhrase: () => Omit<{ handleCancelOverwrite?: () => void; handleChangeSeedPhrase?: (value: string) => void; handleClear?: () => void; handleGenerate?: () => void; handleSave?: () => void; overwriteWarning?: boolean; phrase?: string; seedPhrase?: string; setOverwriteWarning?: import("react").Dispatch>; setPhrase?: import("react").Dispatch>; validPhrase?: boolean | null; validSeedPhrase?: boolean | null; validate?: (passedPhrase?: string) => boolean | null; } & { provided: true; }, "provided"> | Omit, "provided">; //# sourceMappingURL=use.d.ts.map