import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext } from '../http/http'; import { FormListResponse } from '../models/FormListResponse'; export declare class FormsApiRequestFactory extends BaseAPIRequestFactory { listForm(count?: number, page?: number, status?: Array<'draft' | 'active' | 'disabled'>, orderBy?: 'name' | 'responses' | 'status' | 'created_date' | 'modified_date', asc?: boolean, name?: string, _options?: Configuration): Promise; } export declare class FormsApiResponseProcessor { listForm(response: ResponseContext): Promise; }