import React from "react"; export interface LiquidGlassInspectorSection { id: string; title: string; content: React.ReactNode; } export interface LiquidGlassInspectorPanelProps extends React.HTMLAttributes { open: boolean; onOpenChange?: (open: boolean) => void; title?: string; selectionLabel?: string; placement?: "right" | "left" | "bottom"; resizable?: boolean; sections?: LiquidGlassInspectorSection[]; materialVariant?: "regular" | "clear"; } export declare const LiquidGlassInspectorPanel: React.ForwardRefExoticComponent>; //# sourceMappingURL=LiquidGlassInspectorPanel.d.ts.map