import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; import { FunctionGeneric } from '../../../common/structures/Generics'; interface IProps extends IReactComponentProps { defaultPath?: string; dialogProperties?: string[]; dialogTitle?: string; isFormInput?: boolean; isInline?: boolean; onChange?: FunctionGeneric; placeholder?: string; value?: string; } interface IState { value: string | undefined; } export default class BrowseInput extends React.Component { constructor(props: IProps); UNSAFE_componentWillReceiveProps(nextProps: IProps): void; browseFolder(): Promise; render(): React.JSX.Element; } export {}; //# sourceMappingURL=BrowseInput.d.ts.map