import { SetupFrontOfficePurposeService } from './setup_front_office_purpose.service';
import { SetupFrontOfficePurpose } from './entities/setup_front_office_purpose.entity';
export declare class SetupFrontOfficePurposeController {
    private readonly setupFrontOfficePurposeService;
    constructor(setupFrontOfficePurposeService: SetupFrontOfficePurposeService);
    create(purposeEntity: SetupFrontOfficePurpose): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupFrontOfficePurpose[]>;
    findOne(id: string): Promise<SetupFrontOfficePurpose>;
    update(id: string, purposeEntity: SetupFrontOfficePurpose): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    SetupFrontOfficePurpose(search: string): Promise<SetupFrontOfficePurpose[]>;
    findAllDesig(limit: number, pagenumber: number): Promise<{
        status: string;
        message: string;
        data: any;
        total: any;
    }>;
}
