import { RegularHoursDto } from './regular-hours.dto';
import { ExceptionalPeriodDto } from './exceptional-period.dto';
export declare class HoursDto {
    twentyFourSeven: boolean;
    regularHours?: RegularHoursDto[];
    exceptionalOpenings?: ExceptionalPeriodDto[];
    exceptionalClosings?: ExceptionalPeriodDto[];
}
