import type { TableRowProps } from '@mui/material'; import React from 'react'; /** * Props for {@link SeedPhraseTableRow}. * @public */ export interface SeedPhraseTableRowProps extends TableRowProps { changeSeedPhrase?: (seedPhrase: string) => void; seedPhrase?: string; } /** * Settings table row showing seed phrase status and an update dialog trigger. * @public */ export declare const SeedPhraseTableRow: React.FC; //# sourceMappingURL=SeedPhraseTableRow.d.ts.map