/**
 * @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 {};
