import { FormFormatMapping, FormFullServerFormat, FormMinimalServerFormat, GetFormParams, ListFormFilesResponse, ListFormsParams, ListFormsResponse } from '../types/formTypes'; import { FetchResponse } from '../types/types'; import { BaseController } from './BaseController'; export declare class FormsController extends BaseController { protected init(): void; listForms = never>(formID: string, params?: ListFormsParams): Promise>>; getForm(formID: string, itemID: string, params?: GetFormParams): Promise>; listFormFiles(formID: string, itemID: string): Promise>; getFormFile(formID: string, itemID: string, filename: string): Promise>; }