export interface DateRangeInputProps {
    /** Whether the field is in an invalid state */
    isInvalid?: boolean;
    /** Whether the field is in a loading state */
    isLoading?: boolean;
    /** Whether the field is disabled */
    isDisabled?: boolean;
    /** Whether the field is read-only */
    isReadOnly?: boolean;
    /** Clear button click handler */
    onClearButtonPress?: () => void;
}
export declare function DateRangeInput({ isLoading, isInvalid, isReadOnly, isDisabled, onClearButtonPress, }: DateRangeInputProps): import("react/jsx-runtime").JSX.Element;
export declare namespace DateRangeInput {
    var displayName: string;
}
