import { CreateInviteInput, InviteResponse } from "./types"; export declare class InviteError extends Error { code: string; constructor(message: string, code: string); } /** * Creates a new team invite. * Throws InviteError if user exists or pending invite exists. */ export declare function createInvite(input: CreateInviteInput, invitedByUserId: string): Promise; //# sourceMappingURL=service.d.ts.map