import type { DynamicComponents } from '../models/DynamicComponents'; import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export declare class DynamicComponentsService { readonly httpRequest: BaseHttpRequest; constructor(httpRequest: BaseHttpRequest); getPersonalizedGroupsList({ orgSlug, path, }: { orgSlug: string; path: string; }): CancelablePromise; postPersonalizedInstanceMetadataSave({ orgSlug, requestBody, }: { orgSlug: string; requestBody?: { dynamic_component_id: number; post_id: number; post_metadata: any; }; }): CancelablePromise; getDynamicComponentsUrlFileActive({ orgSlug, id, develop, }: { orgSlug: string; id: string; develop?: boolean; }): CancelablePromise; getDynamicComponentsUrlbypath({ orgSlug, path, }: { orgSlug: string; path?: string; }): CancelablePromise; getDynamicComponentsRoutes({ orgSlug, }: { orgSlug: string; }): CancelablePromise; getDynamicComponentsUrl({ orgSlug, url, }: { orgSlug: string; url?: string; }): CancelablePromise; getDynamicComponents({ orgSlug, attributes, where, last, order, }: { orgSlug: string; attributes?: Array<(Array | string)>; where?: any; last?: string; order?: string; }): CancelablePromise; postDynamicComponents({ orgSlug, requestBody, }: { orgSlug: string; requestBody?: { title?: string; fileVuePrefix?: string; type?: string; data_access?: string; groups?: any[]; }; }): CancelablePromise; getDynamicComponents1({ orgSlug, id, isDevelop, isDevSession, }: { orgSlug: string; id: number; isDevelop?: boolean; isDevSession?: boolean; }): CancelablePromise; putDynamicComponents({ orgSlug, id, }: { orgSlug: string; id: string; }): CancelablePromise; deleteDynamicComponents({ orgSlug, id, }: { orgSlug: string; id: number; }): CancelablePromise; }