import { BinaryTypeInput, Input } from '@judo/model-api'; export interface BinaryInputComponentProps { element: BinaryTypeInput | Input; readOnly?: boolean; value?: string | null; onChange?: (value: string | null) => void; error?: string; disabled?: boolean; fileName?: string; } /** * Binary/file input component. */ export declare function BinaryInputComponent({ element, readOnly, value: _value, onChange, error, disabled, fileName, }: BinaryInputComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=BinaryInputComponent.d.ts.map