export type AddModalProps = { open: boolean; onClose: () => void; title: string; onCreate: (name: string) => void; initialName?: string; }; export declare const AddModal: ({ onCreate, open, onClose, title, initialName }: AddModalProps) => JSX.Element; //# sourceMappingURL=AddModal.d.ts.map