import HttpClient from './index'; import { CustomStatusDto } from "../data/CustomStatus"; export declare class CustomStatusService extends HttpClient { getAllCustomStatus(bearer: string, account: string, appointmentId?: string): Promise; getById(bearer: string, account: string, customStatusId: string): Promise; createCustomStatus(bearer: string, account: string, customStatus: CustomStatusDto): Promise; updateCustomStatus(bearer: string, account: string, customStatusId: string, customStatus: CustomStatusDto): Promise; deleteCustomStatus(bearer: string, account: string, customStatusId: string): Promise; }