import React from 'react'; import { TextInputProps } from '../TextInput'; export interface DateInputProps { /** * The position to expand the picker */ alignment?: 'left' | 'right' | 'match-width'; /** * The format displayed in the input element */ format?: string; /** * A flag that dictates if the component should allow manipulating time */ withTime?: boolean; /** * A flag that allows clearing the values */ disableReset?: boolean; /** The variant of the component that decides the colors */ variant?: 'solid' | 'outline'; /** * Date input format for time picker */ mode?: '12h' | '24h'; /** * A date that that works as a value */ value?: Date; /** * Specifies the timezone that will be used when selecting a date */ timezone?: 'local' | 'utc'; /** * A callback for whenever the value of the chosen date changes. * * `(date: Date | null) => void` * */ onChange: (date?: Date) => void; } declare const _default: React.NamedExoticComponent>; export default _default;