UNPKG

@atlaskit/datetime-picker

Version:

A date time picker allows the user to select an associated date and time.

20 lines (19 loc) 585 B
/** * @jsxRuntime classic * @jsx jsx */ import { type Appearance } from '../types'; type DateTimePickerContainerProps = { children?: React.ReactNode; isDisabled: boolean; isFocused: boolean; appearance: Appearance; isInvalid: boolean; innerProps: React.AllHTMLAttributes<HTMLElement>; testId?: string; }; /** * This is the container for the datetime picker component. */ export declare const DateTimePickerContainer: React.ForwardRefExoticComponent<React.PropsWithoutRef<DateTimePickerContainerProps> & React.RefAttributes<HTMLDivElement>>; export {};