export type SidePanelSide = "left" | "right"; export interface ISidePanelProps { isOpen: boolean; side: SidePanelSide; onClose: () => void; title?: string | React.ReactNode; /** Rendered in the header row between the title and the close button (e.g. a copy button). */ headerActions?: React.ReactNode; children?: React.ReactNode; width?: string; } export declare const SidePanel: import('react').ForwardRefExoticComponent>;