import { TimeBlock } from '../common';
/**
 * Calculates input blocks offset
 * @param inputBlocks - array of timeblocks after parsing
 * @param columnsLength - used day of week count
 * @returns array of timeblocks with corrected days of week visualization
 */
export declare const inputOffset: (inputBlocks: TimeBlock[], columnsLength: number) => TimeBlock[];
