import type { AccountMember } from '../rest/account-members.js'; import { type OutputFormat } from './render.js'; export interface AccountMembersTableOptions { showId?: boolean; } export declare function formatCursorPaginationInfo(count: number, nextId: string | null): string; export declare function formatCursorNavigationHints(nextId: string | null): string; export declare function formatAccountMembers(members: AccountMember[], format: OutputFormat, options?: AccountMembersTableOptions): string;