import type { ContextExState } from '@ariestools/sdk-react/shared'; import type { Dispatch, SetStateAction } from 'react'; /** * State shape for {@link SeedPhraseContext}. * @public */ export type SeedPhraseContextState = ContextExState<{ handleCancelOverwrite?: () => void; handleChangeSeedPhrase?: (value: string) => void; handleClear?: () => void; handleGenerate?: () => void; handleSave?: () => void; overwriteWarning?: boolean; phrase?: string; seedPhrase?: string; setOverwriteWarning?: Dispatch>; setPhrase?: Dispatch>; validPhrase?: boolean | null; validSeedPhrase?: boolean | null; validate?: (passedPhrase?: string) => boolean | null; }>; //# sourceMappingURL=State.d.ts.map