import { SetupApptSlotAmountService } from './setup_appt_slot_amount.service';
import { SetupApptSlotAmount } from './entities/setup_appt_slot_amount.entity';
export declare class SetupApptSlotAmountController {
    private readonly setupApptSlotAmountService;
    constructor(setupApptSlotAmountService: SetupApptSlotAmountService);
    create(slotEntity: SetupApptSlotAmount): Promise<{
        data: {
            status: string;
            messege: string;
        };
    }[] | {
        data: {
            id: any;
            status: string;
            messege: string;
            inserted_data: any;
        };
    }[]>;
    findAll(staff_id: number): Promise<any>;
    update(id: string, slotEntity: SetupApptSlotAmount): Promise<{
        status: string;
        message: string;
    }[] | {
        'data ': {
            status: string;
            message: string;
            updated_values: any;
        };
    }[]>;
    remove(id: string): Promise<{
        status: string;
        message: string;
    }[]>;
}
