export declare enum PanelPosition { TopLeft = 'top-left', TopCenter = 'top-center', TopRight = 'top-right', BottomLeft = 'bottom-left', BottomCenter = 'bottom-center', BottomRight = 'bottom-right', } export interface PanelProps { position: PanelPosition }