import React from 'react';
import { QuickProps } from './Props';
export default class Quick extends React.Component<QuickProps> {
    getOptions(): {
        timeZone: string | undefined;
        startOfWeek: any;
    };
    compareDate(a: Date[], b: Date[]): boolean;
    handleQuick(quick: {
        invalid: boolean;
        value: Date[];
        name: string;
    }): void;
    render(): {} | null;
}
