import React from "react"; export interface LiquidGlassSidebarItem { id: string; label: string; icon?: React.ReactNode; badge?: React.ReactNode; disabled?: boolean; } export interface LiquidGlassInsetSidebarProps extends Omit, "onSelect"> { items: LiquidGlassSidebarItem[]; selectedId?: string; onSelect?: (id: string) => void; placement?: "left" | "right"; collapsible?: boolean; collapsed?: boolean; backgroundExtension?: boolean; scrollEdge?: "soft" | "hard" | false; materialVariant?: "regular" | "clear"; } export declare const LiquidGlassInsetSidebar: React.ForwardRefExoticComponent>; //# sourceMappingURL=LiquidGlassInsetSidebar.d.ts.map