import React, { JSX, ReactNode } from "react"; import { BPFileComponentState } from "../bpComponents/BPFileComponent"; export interface FileComponentProps { state: BPFileComponentState; onChange: (state: Partial>) => Promise; previewSlot?: ReactNode; uuid?: string; AssetPicker?: (props: { state: BPFileComponentState; onChange: (state: Partial>) => Promise; className?: string; style?: React.CSSProperties; }) => JSX.Element; disableFileInput?: boolean; } export declare const FileComponent: ({ state, onChange, previewSlot, AssetPicker }: FileComponentProps) => import("react/jsx-runtime").JSX.Element;