import React from 'react'; interface CreateFolderDialogProps { parentFolderUid: string; createFolder: (title: string, parentUid: string) => Promise<{ uid: string; title: string; }>; onFolderCreated: (folderUid: string, folderTitle: string) => void; onCancel: () => void; } declare const CreateFolderDialog: React.FC; export default CreateFolderDialog;