import { Typeform } from './typeform-types'; export declare class Workspaces { private _http; constructor(_http: Typeform.HTTPClient); add(args: { name: string; }): Promise; addMembers(args: { id: string; members: string | string[]; }): Promise; delete(args: { id: string; }): Promise; get(args: { id: string; }): Promise; list(args?: { search?: string; page?: number | 'auto'; pageSize?: number; }): Promise; removeMembers(args: { id: string; members: string | string[]; }): Promise; update(args: { id: string; data: Typeform.API.PATCH<'/name' | '/members'>[]; }): Promise; }