interface ContactListParams { status?: string; source?: string; since?: string; accountId?: string; limit?: number; } interface ContactSummary { nodeId: string; givenName: string; familyName?: string; email?: string; telephone?: string; status: string; source: string; createdOn: string; } export declare function contactList(params: ContactListParams): Promise<{ contacts: ContactSummary[]; total: number; }>; export {}; //# sourceMappingURL=contact-list.d.ts.map