import { type ComponentPropsWithoutRef } from 'react'; import { type SidePaneProps } from '../SidePane/SidePane.types'; export type EmbeddedSidePaneProps = { /** * The container element where the EmbeddedSidePane will be rendered inside and positioned. * This element must have "position: relative" for proper positioning and "overflow: hidden/clip" for clipping. * * @default undefined */ container?: HTMLElement | null; } & Omit; export type EmbeddedSidePaneContainerProps = ComponentPropsWithoutRef<'div'>;