import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export declare class FormsResponsesService { readonly httpRequest: BaseHttpRequest; constructor(httpRequest: BaseHttpRequest); getFormsResponses({ orgSlug, id, }: { orgSlug: string; id: string; }): CancelablePromise; getFormResponses({ orgSlug, limit, attributes, where, search, last, order, }: { orgSlug: string; limit?: number; attributes?: Array<(Array | string)>; where?: any; search?: string; last?: string; order?: string; }): CancelablePromise; postFormResponses({ orgSlug, requestBody, }: { orgSlug: string; requestBody?: { formId: number; startedAt: string; FormsResponsesFields?: Array<{ formFieldId?: number; responseValue?: (string | null | number | boolean); }>; }; }): CancelablePromise; getFormResponses1({ orgSlug, id, }: { orgSlug: string; id: number; }): CancelablePromise; putFormResponses({ orgSlug, id, requestBody, }: { orgSlug: string; id: number; requestBody?: { startedAt?: string; finishedAt?: string; expiresAt?: string; }; }): CancelablePromise; deleteFormResponses({ orgSlug, id, }: { orgSlug: string; id: number; }): CancelablePromise; }