/// interface Props { onConfirm: (name: string) => void; onCancel: () => void; parentPath: string; defaultValue?: string; } export default function CreateFileDialog(props: Props): JSX.Element; export {};