/** * @jsxRuntime classic * @jsx jsx */ import { type CSSProperties, type FocusEventHandler, type MouseEventHandler, type ReactNode } from 'react'; interface ContainerProps { children: ReactNode | (() => ReactNode); onBlur?: FocusEventHandler; onClick?: MouseEventHandler; onFocus?: FocusEventHandler; style: CSSProperties; testId?: string; } /** * __Container__ * * A container is used as a styled wrapper around the contents of an inline dialog. * Note that the styles here are merged with the style prop that comes from the popper.js library. * */ export declare const Container: React.ForwardRefExoticComponent & React.RefAttributes>; export {};