import { FC } from "react"; //#region src/components/ui/side-panel.d.ts interface PanelAction { icon: React.ReactNode; onClick: () => void; label?: string; } interface PanelProps { title: string; subtitle?: string; actions?: PanelAction[]; className?: string; children?: React.ReactNode; onClose?: () => void; } declare const SidePanel: FC; //#endregion export { SidePanel }; //# sourceMappingURL=side-panel.d.ts.map