import { PoliService } from './poli.service';
export declare class PoliController {
    private poliService;
    constructor(poliService: PoliService);
    findAll(): Promise<({
        _count: {
            doctors: number;
        };
    } & {
        id: number;
        name: string;
        createdAt: Date;
        updatedAt: Date;
        slug: string;
        description: string | null;
        icon: string | null;
        isActive: boolean;
    })[]>;
    findBySlug(slug: string): Promise<{
        doctors: ({
            doctor: {
                id: number;
                name: string;
                createdAt: Date;
                updatedAt: Date;
                slug: string;
                photo: string | null;
                specialization: string | null;
                education: string | null;
                bio: string | null;
            };
        } & {
            id: number;
            doctorId: number;
            poliId: number;
        })[];
        schedules: ({
            doctor: {
                id: number;
                name: string;
                createdAt: Date;
                updatedAt: Date;
                slug: string;
                photo: string | null;
                specialization: string | null;
                education: string | null;
                bio: string | null;
            };
        } & {
            id: number;
            doctorId: number;
            poliId: number;
            day: string;
            startTime: string;
            endTime: string;
            room: string | null;
        })[];
    } & {
        id: number;
        name: string;
        createdAt: Date;
        updatedAt: Date;
        slug: string;
        description: string | null;
        icon: string | null;
        isActive: boolean;
    }>;
    getDoctorsByPoli(slug: string): Promise<{
        id: number;
        name: string;
        createdAt: Date;
        updatedAt: Date;
        slug: string;
        photo: string | null;
        specialization: string | null;
        education: string | null;
        bio: string | null;
    }[]>;
    getScheduleByPoli(slug: string): Promise<({
        poli: {
            id: number;
            name: string;
            createdAt: Date;
            updatedAt: Date;
            slug: string;
            description: string | null;
            icon: string | null;
            isActive: boolean;
        };
        doctor: {
            id: number;
            name: string;
            createdAt: Date;
            updatedAt: Date;
            slug: string;
            photo: string | null;
            specialization: string | null;
            education: string | null;
            bio: string | null;
        };
    } & {
        id: number;
        doctorId: number;
        poliId: number;
        day: string;
        startTime: string;
        endTime: string;
        room: string | null;
    })[]>;
    adminFindAll(): Promise<({
        _count: {
            doctors: number;
        };
    } & {
        id: number;
        name: string;
        createdAt: Date;
        updatedAt: Date;
        slug: string;
        description: string | null;
        icon: string | null;
        isActive: boolean;
    })[]>;
    create(data: {
        name: string;
        description?: string;
        icon?: string;
    }): Promise<{
        id: number;
        name: string;
        createdAt: Date;
        updatedAt: Date;
        slug: string;
        description: string | null;
        icon: string | null;
        isActive: boolean;
    }>;
    update(id: string, data: any): Promise<{
        id: number;
        name: string;
        createdAt: Date;
        updatedAt: Date;
        slug: string;
        description: string | null;
        icon: string | null;
        isActive: boolean;
    }>;
    remove(id: string): Promise<{
        id: number;
        name: string;
        createdAt: Date;
        updatedAt: Date;
        slug: string;
        description: string | null;
        icon: string | null;
        isActive: boolean;
    }>;
}
