export declare const DEFAULT_TICK_HEIGHT = 50; export declare const DEFAULT_TICK_WIDTH = 150; export declare const DEFAULT_TICK_WIDTH_GANTT = 200; /** Returns the number of ticks for a given height */ export declare function getVerticalNumTicks(height: number): number; /** Returns the number of ticks for a given width */ export declare function getHorizontalNumTicks(width: number): number; /** Returns the number of ticks for a given width for a time axis */ export declare function getHorizontalTimeAxisNumTicks(width: number): number; /** Returns the number of ticks for a given width for a gantt chart time axis */ export declare function getGanttHorizontalTimeAxisNumTicks(width: number): number;