import { FrontofficeComplainService } from './frontoffice_complain.service';
import { FrontofficeComplain } from './entities/frontoffice_complain.entity';
export declare class FrontofficeComplainController {
    private readonly frontofficeComplainService;
    constructor(frontofficeComplainService: FrontofficeComplainService);
    create(createFrontofficeComplain: FrontofficeComplain): Promise<{
        "data ": {
            status: string;
            messege: string;
            complaint_Details: any;
        };
    }[]>;
    update(id: number, createFrontofficeComplain: FrontofficeComplain): Promise<{
        "data ": {
            status: string;
            messege: string;
            updated_values: any;
        };
    }[]>;
    removeFrontofficeComplaint(id: number, hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
}
