import React from "react"; import type { MaskedInputProps } from "../MaskedInput/MaskedInput"; export type DateInputProps = { format: "US" | "DE" | "RoW" | string; isPlaceholderShown?: boolean; dayPlaceholderChar?: string; monthPlaceholderChar?: string; yearPlaceholderChar?: string; "data-e2e-test-id"?: string; } & Omit; export declare function DateInput({ format, labelHint, isPlaceholderShown, dayPlaceholderChar, monthPlaceholderChar, yearPlaceholderChar, "data-e2e-test-id": dataE2eTestId, ...rest }: DateInputProps): React.ReactElement;