import Client from '@slicknode/client-node'; import { BaseCommand } from '../base/base-command'; export declare type AccountInfo = { name: string; identifier: string; id: string; }; export declare const GET_ACCOUNTS_QUERY = "query GetAccounts {\n viewer {\n user {\n accounts(first: 250) {\n edges {\n node {\n account {\n id\n identifier\n name\n }\n }\n }\n }\n }\n }\n}"; /** * Returns a list of all accounts for the current user * @param client * @returns */ export declare function getAccounts({ client, command, }: { client: Client; command: BaseCommand; }): Promise>;