import type { TableRowProps } from '@mui/material'; import React from 'react'; /** * Props for {@link MaxAccountsTableRow}. * @public */ export interface MaxAccountsTableRow extends TableRowProps { activeAccountIndex?: number; changeMaxAccounts?: (maxAccounts: number) => void; maxAccounts?: number; } /** * Settings table row for increasing or decreasing the maximum account count. * @public */ export declare const MaxAccountsTableRow: React.FC; //# sourceMappingURL=MaxAccountsTableRow.d.ts.map