import type { ReactNode } from "react"; import type { LucideIcon } from "lucide-react"; export interface ModuleTab { id: string; label: string; icon?: LucideIcon; } interface Props { titel: string; omschrijving?: string; tabs: ModuleTab[]; actiefTab: string; onTabWijzig: (tab: string) => void; acties?: ReactNode; children: ReactNode; } export declare function ModuleTabs({ titel, omschrijving, tabs, actiefTab, onTabWijzig, acties, children, }: Props): import("react").JSX.Element; export {}; //# sourceMappingURL=ModuleTabs.d.ts.map