export interface InvitationListOptions { org?: string; email?: string; limit?: number; before?: string; after?: string; order?: string; } export declare function runInvitationList(options: InvitationListOptions, apiKey: string, baseUrl?: string): Promise; export declare function runInvitationGet(id: string, apiKey: string, baseUrl?: string): Promise; export interface InvitationSendOptions { email: string; org?: string; role?: string; expiresInDays?: number; } export declare function runInvitationSend(options: InvitationSendOptions, apiKey: string, baseUrl?: string): Promise; export declare function runInvitationRevoke(id: string, apiKey: string, baseUrl?: string): Promise; export declare function runInvitationResend(id: string, apiKey: string, baseUrl?: string): Promise;