import { SchedulerViewControlsProps } from '../types';
export declare const useSchedulerIntervals: (activeDate: Date, { startDate, setStartDate, endDate, setEndDate, interval }?: SchedulerViewControlsProps) => {
    controls: import("@emotion/react/jsx-runtime").JSX.Element | null;
    currentInterval: number;
    extendFrom: () => void;
    extendTo: () => void;
    changeDates: (newStartDate: Date, newEndDate: Date) => void;
    config: import("../types").Config;
    divisionDetails: import("../types").DivisionDetail[];
};
