import React from 'react'; import { ITextInputProps } from '../TextInput/TextInput'; export declare const NoticeWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; type IProps = { id: string; disabled?: boolean; meta?: { touched: boolean; error: string; }; focusInput?: boolean; notice?: string; ignorePlaceHolder?: boolean; onChange: (dateString: string) => void; }; export type IDateFieldProps = IProps & Omit; export declare const DateField: ({ id, disabled, meta, focusInput, notice, ignorePlaceHolder, value: initialValue, onChange, ...props }: IDateFieldProps) => React.JSX.Element; export {}; //# sourceMappingURL=DateField.d.ts.map