/**
* `EmbeddedSidePane` is a variant of `SidePane` that is positioned absolutely within its container.
* The container must have `position: relative` for proper positioning and `overflow: hidden/clip` for clipping.
* This component extends the props of `
` element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
*/
export declare const EmbeddedSidePane: import("react").ForwardRefExoticComponent<{
container?: HTMLElement | null;
} & Omit
& import("react").RefAttributes> & {
/**
* The `EmbeddedSidePane.Container` component is used to define the container for the `EmbeddedSidePane`.
* It should be a parent element that has `position: relative` for proper positioning and `overflow: hidden/clip` for clipping.
*
* This component extends the props of `` element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
*/
Container: import("react").ForwardRefExoticComponent, HTMLDivElement>, "ref"> & import("react").RefAttributes>;
};