import { ReactNode } from 'react'; type InlineFileInputProps = { children?: ReactNode; stream?: string; multiple?: boolean; accept?: string; limit?: number; onChange?: (file: File, uploadedUrl: string) => void; }; export declare const InlineFileInput: ({ children, stream, multiple, accept, limit, onChange, }: InlineFileInputProps) => import("react/jsx-runtime").JSX.Element; export {};