///
import { ThemeOptions } from '@mui/material';
import { CSSProperties } from '@mui/styles';
import { FieldInputProps, FormikProps } from 'formik';
export interface IDatePickerFieldProps {
label: string;
field: FieldInputProps;
form: FormikProps;
theme: 'dark' | 'light';
themeOptions?: ThemeOptions & {
input?: CSSProperties;
checkbox?: CSSProperties;
};
useCompact?: boolean;
}
interface IOtherProps {
[key: string]: any;
}
export declare const DatePickerField: ({ label, field, form, theme, useCompact, themeOptions, dateFormat, placeholder, }: IDatePickerFieldProps & IOtherProps) => JSX.Element;
export {};