import { QelosSDKOptions } from './types'; import BaseSDK from './base-sdk'; export interface IInvite { workspace: { name: string; logo?: string; _id: string; }; } export declare enum InviteKind { DECLINE = "decline", ACCEPT = "accept" } export default class QlInvites extends BaseSDK { private relativePath; constructor(options: QelosSDKOptions); getList(): Promise; acceptWorkspace(workspaceId: string): Promise; declineWorkspace(workspaceId: string): Promise; }