import * as React from 'react'; declare type Props = { filename: string; onFilenameChange: (event: React.FormEvent) => void; }; /** * * @param props * @constructor */ declare const FilenameTextField: (props: Props) => JSX.Element; export default FilenameTextField;