import { SetupOperationOperationCategoryService } from './setup-operation-operation_category.service';
import { SetupOperationOperationCategory } from './entities/setup-operation-operation_category.entity';
export declare class SetupOperationOperationCategoryController {
    private readonly setupOperationOperationCategoryService;
    constructor(setupOperationOperationCategoryService: SetupOperationOperationCategoryService);
    create(operation_categoryService: SetupOperationOperationCategory): Promise<{
        [key: string]: any;
    }[]>;
    findAll(): Promise<SetupOperationOperationCategory[]>;
    findOne(id: string): Promise<SetupOperationOperationCategory[]>;
    update(id: string, operation_categoryService: SetupOperationOperationCategory): Promise<{
        [key: string]: any;
    }[]>;
    remove(id: string, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    setupOperationcategory(search: string): Promise<SetupOperationOperationCategory[]>;
    findalloperationcategory(limit: number, page: number, search: string): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: any;
        total: any;
        limit: number;
        totalpages: number;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
        limit?: undefined;
        totalpages?: undefined;
    }>;
}
