import { BaseContext } from '../../types';
/**
 * Options for managing Holidays and Working Days in AdapTable
 */
export interface CalendarOptions {
    /**
     * Holidays for current User
     * @defaultValue null
     */
    holidays?: Date[] | ((baseContext: BaseContext) => Date[] | undefined);
}
