import React from 'react'; import { InternalBaseComponentProps } from '../internal/hooks/use-base-component/index.js'; import { FileInputProps } from './interfaces'; interface InternalFileInputProps { __inputClassName?: string; __inputNativeAttributes?: React.InputHTMLAttributes | Record<`data-${string}`, string>; __injectAnalyticsComponentMetadata?: boolean; } declare const InternalFileInput: React.ForwardRefExoticComponent>; export default InternalFileInput;