export declare const ACCOUNTS_ACTIONS: readonly ["list", "check", "pin", "logout"]; export type AccountsAction = (typeof ACCOUNTS_ACTIONS)[number]; export interface AccountsCommandArgs { action: AccountsAction; provider?: string; selector?: string; flags: { json?: boolean; persistent?: boolean; clear?: boolean; account?: string; all?: boolean; }; } declare class AccountsCommandError extends Error { constructor(message: string); } export declare function toAccountsCommandError(error: unknown): AccountsCommandError | undefined; export declare function runAccountsCommand(cmd: AccountsCommandArgs): Promise; export { AccountsCommandError };