import React from 'react'; import { FieldInputProps } from 'formik'; import { FormikInputProps } from '.'; import { Files } from '@tapis/tapis-typescript'; import { InputProps } from 'reactstrap'; export declare const parseTapisURI: (uri?: string) => { systemId: string; file: Files.FileInfo; parent: string; } | undefined; type FormikTapisFileInputProps = { append?: React.ReactNode; allowSystemChange?: boolean; systemId?: string; path?: string; mode?: 'single' | 'none' | 'multi'; files?: boolean; dirs?: boolean; } & InputProps & FieldInputProps; export declare const FormikTapisFileInput: React.FC; type FormikTapisFileProps = { allowSystemChange?: boolean; systemId?: string; path?: string; mode?: 'single' | 'none' | 'multi'; files?: boolean; dirs?: boolean; } & FormikInputProps; declare const _default: React.NamedExoticComponent; export default _default;