import { Time } from './time.model';
export declare class Day {
    open: boolean;
    time: Time[];
    constructor(obj?: any);
}
