import * as React from 'react'; import type { LucideIcon } from 'lucide-react'; interface AddItemDialogProps { open: boolean; onOpenChange: (open: boolean) => void; title: string; description?: string; icon?: LucideIcon; children: React.ReactNode; contentClassName?: string; } export declare function AddItemDialog({ open, onOpenChange, title, description, icon: Icon, children, contentClassName, }: AddItemDialogProps): React.JSX.Element; export {}; //# sourceMappingURL=AddItemDialog.d.ts.map