import type { ReactNode } from 'react';
import type { SegmentStateReturn } from '../segment';
export declare const DateField: import("@vtex/admin-ui-react").AdminUIElement<"div", DateFieldOptions>;
export interface DateFieldOptions {
    state: SegmentStateReturn;
    label: string;
    disclosure?: ReactNode;
    tone?: 'neutral' | 'critical';
    disabled?: boolean;
}
