/** @description Indicates a specific date window that a service point is open */
export declare class DayOfOperation {
    /** @description The starting day expressed in ISO 8601 date(yyyy-mm-dd) only format */
    start?: string;
    /** @description The close time expressed in ISO 8601 date(yyyy-mm-dd) only format */
    end?: string;
}
