import { AppointmentCancellationReasonService } from './appointment-cancellation-reason.service';
export declare class AppointmentCancellationReason {
    reason: string;
}
export declare class AppointmentCancellationReasonController {
    private readonly appointmentCancellationReasonService;
    constructor(appointmentCancellationReasonService: AppointmentCancellationReasonService);
    findAll(): Promise<any>;
}
