/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../../schema.js';
import { SnapDay } from '../snapDay.js';
/** This is a container type for one-of types. */
export type CalendarBillingSnapDay = number | SnapDay;
export declare const calendarBillingSnapDaySchema: Schema<CalendarBillingSnapDay>;
export declare namespace CalendarBillingSnapDay {
    /**
     * Validation method to narrow down union type to number type case.
     *
     * This is Number case.
     */
    function isNumber(value: unknown): value is number;
    /**
     * Validation method to narrow down union type to SnapDay type case.
     *
     * This is SnapDay case.
     */
    function isSnapDay(value: unknown): value is SnapDay;
}
//# sourceMappingURL=calendarBillingSnapDay.d.ts.map