import * as appointmentListActions from '../actions/appointments.action'; import { AppointmentState } from '../states/appointment.state'; export declare function reducer(state: AppointmentState, action: appointmentListActions.AppointmentDetailsActions): AppointmentState; export declare const getLoadingAppointmentlist: (state: AppointmentState) => boolean; export declare const getErrors: (state: AppointmentState) => string[]; export declare const getSelectedAppointmentId: (state: AppointmentState) => number;