export interface MembershipListOptions { org?: string; user?: string; limit?: number; before?: string; after?: string; order?: string; } export declare function runMembershipList(options: MembershipListOptions, apiKey: string, baseUrl?: string): Promise; export declare function runMembershipGet(id: string, apiKey: string, baseUrl?: string): Promise; export interface MembershipCreateOptions { org: string; user: string; role?: string; } export declare function runMembershipCreate(options: MembershipCreateOptions, apiKey: string, baseUrl?: string): Promise; export declare function runMembershipUpdate(id: string, role: string | undefined, apiKey: string, baseUrl?: string): Promise; export declare function runMembershipDelete(id: string, apiKey: string, baseUrl?: string): Promise; export declare function runMembershipDeactivate(id: string, apiKey: string, baseUrl?: string): Promise; export declare function runMembershipReactivate(id: string, apiKey: string, baseUrl?: string): Promise;