import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { ListWebformsResponse } from '../models/ListWebformsResponse'; export declare class WebformsApiRequestFactory extends BaseAPIRequestFactory { getHtml(webformId: string, _options?: Configuration): Promise; listWebforms(filter?: string, orderBy?: string, pageSize?: number, pageToken?: string, _options?: Configuration): Promise; } export declare class WebformsApiResponseProcessor { getHtmlWithHttpInfo(response: ResponseContext): Promise>; listWebformsWithHttpInfo(response: ResponseContext): Promise>; }