import React from 'react';
export declare function classNames(...classes: Array<string | boolean | undefined>): string;
export interface CalendarProps {
    onChange(startDate: Date, endDate: Date): void;
    defaultStartDate?: Date;
    defaultEndDate?: Date;
}
export declare const PHXCalendar: React.FC<CalendarProps>;
