import { SchedulerColumnsProps } from './types';
/**
 * Default used columns descriptions
 * [SchedulerColumnsProps]{@link SchedulerColumnsProps}
 */
export declare const schedulerColumns: SchedulerColumnsProps[];
/**
 * Default used time rows descriptions
 */
export declare const schedulerRows: string[];
/**
 * Describing time block moving direction
 */
export declare const DIR: {
    TOP: boolean;
    BOTTOM: boolean;
};
/**
 * Describing time block actions
 */
export declare const ACTION: {
    RESIZE_TOP: number;
    RESIZE_BOT: number;
    MOVE: number;
};
/**
 * Describing which time was changes, using for custom time setter
 */
export declare const TIME: {
    START: boolean;
    END: boolean;
};
/**
 * ms count per 1 day
 */
export declare const HOUR_24 = 86400000;
