/** * @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; testId?: string; }; /** * This is the container for the datetime picker component. */ export declare const DateTimePickerContainer: React.ForwardRefExoticComponent & React.RefAttributes>; export {};