import React from "react"; import { type DatePickerProps } from "./DatePicker"; type Props = DatePickerProps & { label?: string; helperText?: React.ReactNode; errorText?: React.ReactNode; /** * When true, the date picker and its helper/error text stretch to fill * the full width of the container. * * By default the date picker only takes its intrinsic width. */ fullWidth?: boolean; }; export declare const LabeledDatePicker: React.FC; export {};