import type { Transport, PageResult } from '@23blocks/contracts'; import type { Form, CreateFormRequest, UpdateFormRequest, ListFormsParams } from '../types/form.js'; export interface FormsService { list(params?: ListFormsParams): Promise>; get(uniqueId: string): Promise
; create(data: CreateFormRequest): Promise; update(uniqueId: string, data: UpdateFormRequest): Promise; delete(uniqueId: string): Promise; } export declare function createFormsService(transport: Transport, _config: { apiKey: string; }): FormsService; //# sourceMappingURL=forms.service.d.ts.map