import * as React from 'react'; import type { DatePickerProps } from '@planview/pv-uikit'; import type { DisplayOnType } from '../utils/'; import type { IconProps } from '@planview/pv-icons'; export type ToolbarDatePickerProps = Omit & { /** * String displayed when not editing. * If not used, will fall-back to value of the datepicker input (value/defaultValue/placeHolder) */ label?: string; /** * Icon for trigger button * */ icon?: React.ReactElement; /** * Target display of this item. Note: When this item is hidden, it does not move into the more * menu since there is not an equivalent menu representation. */ displayOn?: DisplayOnType; /** * Opt-in to override built-in behavior to remove the visible label of buttons in mobile breakpoint. * Set this to true to always show the visible label of button */ preventLabelCollapse?: boolean; }; /** * * `import { ToolbarDatePicker } from '@planview/pv-toolbar'` * */ export declare const ToolbarDatePicker: ({ icon, displayOn, preventLabelCollapse, label, ...otherProps }: ToolbarDatePickerProps) => React.JSX.Element; //# sourceMappingURL=datepicker.d.ts.map