import { SystemProps } from "../../../lib"; export interface DatePickerProps extends SystemProps { value: string; onChange: (val: any) => void; className?: string; inputProps?: any; name?: string; } export declare const DatePicker: import("styled-components").StyledComponent<({ value, onChange, className, inputProps, }: DatePickerProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;