/** * Check compatibility of opening_hours string with YoHours */ declare class YoHoursChecker { private _parser; constructor(); /** * Check if the opening_hours is readable by YoHours * @param oh The opening_hours string * @return True if YoHours can read it and display it */ canRead(oh: any): boolean; } export default YoHoursChecker;