import { ComponentPropsWithoutRef } from 'react'; type ELDatePickerCustomProps = { name: string; label?: string; isLabelSrOnly?: boolean; placeholder: string; value: Date | undefined; setValue: (value: Date) => void; disabled?: boolean; error?: string; 'data-cy'?: string; }; type ELDateTimeInputProps = ComponentPropsWithoutRef<'button'> & ELDatePickerCustomProps; export declare const formatDate: (date: Date) => string; export declare const ELDatePicker: ({ value, setValue, name, error, placeholder, label, isLabelSrOnly, ...rest }: ELDateTimeInputProps) => import("react/jsx-runtime").JSX.Element; export {};