/// export interface OutputDirProps { value: string; onConfirm?(): void; } declare function OutputDir({ onConfirm, value }: OutputDirProps): JSX.Element; export default OutputDir;