import type { SnackbarProps } from '@mui/material'; import type { Dispatch, SetStateAction } from 'react'; import React from 'react'; /** * Props for {@link OutOfBoundsSnackBar}. * @public */ export interface OutOfBoundsSnackBarProps extends SnackbarProps { activeAccountIndex?: number; desiredMaximumAccounts?: number; setShowSnackBar?: Dispatch>; showSnackBar?: boolean; } /** * Snackbar warning when max accounts would exclude the active account index. * @public */ export declare const OutOfBoundsSnackBar: React.FC; //# sourceMappingURL=OutOfBoundsSnackBar.d.ts.map