import { AxiosInstance, AxiosPromise, AxiosResponse } from 'axios'; import { Observable } from 'rxjs'; export declare class ContentService { protected readonly instance: AxiosInstance; protected readonly target: string; constructor(instance?: AxiosInstance, target?: string); verifyContent(contents: unknown[]): Promise; postContent(targetId: string, contents: unknown[]): Promise; deleteContent(targetId: string): Promise; get axiosRef(): AxiosInstance; protected makeObservable(axios: (...args: any[]) => AxiosPromise, ...args: any[]): Observable>; }