import type { Account } from './Account';
export type Accounts = {
    accounts: Array<Account>;
};
