import * as React from 'react';
import type { DateRangePickerProps } from './DateRangePicker';
declare const _default: {
    tags: string[];
    title: string;
    component: import("flow-to-typescript-codemod").Flow.AbstractComponent<DateRangePickerProps, HTMLDivElement>;
    argTypes: {
        classNames: {
            description: string;
            control: {
                type: string;
            };
            table: {
                type: {
                    summary: string;
                };
            };
        };
        selectedDateRange: {
            description: string;
            control: {
                type: string;
            };
            table: {
                type: {
                    summary: string;
                };
            };
        };
        minDate: {
            description: string;
            control: {
                type: string;
            };
            table: {
                type: {
                    summary: string;
                };
                defaultValue: {
                    summary: string;
                };
            };
        };
        maxDate: {
            description: string;
            control: {
                type: string;
            };
            table: {
                type: {
                    summary: string;
                };
                defaultValue: {
                    summary: string;
                };
            };
        };
        hideTimezone: {
            description: string;
            control: {
                type: string;
            };
            table: {
                type: {
                    summary: string;
                };
                defaultValue: {
                    summary: boolean;
                };
            };
        };
        onCancel: {
            description: string;
            control: null;
            table: {
                type: {
                    summary: string;
                };
            };
        };
        onError: {
            description: string;
            control: null;
            table: {
                type: {
                    summary: string;
                };
            };
        };
        onApply: {
            description: string;
            control: null;
            table: {
                type: {
                    summary: string;
                };
            };
        };
        startDateLabel: {
            description: string;
            control: {
                type: string;
            };
        };
        endDateLabel: {
            description: string;
            control: {
                type: string;
            };
        };
        t: {
            description: string;
            control: null;
            table: {
                type: {
                    summary: string;
                };
            };
        };
        locale: {
            description: string;
            control: {
                type: string;
            };
            table: {
                type: {
                    summary: string;
                };
            };
        };
    };
    parameters: {
        docs: {
            subtitle: string;
            description: {
                component: string;
            };
        };
        storySource: {
            componentPath: string;
        };
    };
};
export default _default;
export declare const _Default: {
    (args: DateRangePickerProps): React.JSX.Element;
    args: {
        classNames: {
            wrapper: string;
        };
    };
};
export declare const _WithSelectedDateRange: {
    (args: DateRangePickerProps): React.JSX.Element;
    args: {
        classNames: {
            wrapper: string;
        };
        selectedDateRange: {
            startDate: string;
            endDate: string;
            timezone: string;
        };
    };
};
export declare const _WithInputDropdown: {
    ({ selectedDateRange, classNames, }: DateRangePickerProps): React.JSX.Element;
    args: {
        classNames: {
            wrapper: string;
        };
    };
};
export declare const _WithMinAndMaxDate: {
    (args: DateRangePickerProps): React.JSX.Element;
    args: {
        classNames: {
            wrapper: string;
        };
        minDate: string;
        maxDate: string;
    };
};
//# sourceMappingURL=DateRangePicker.stories.d.ts.map