import { FlowRemoteElement } from '../lib/FlowRemoteElement'; import { FileFieldProps as RemoteFileFieldElementProps } from '@mittwald/flow-react-components'; export type { FileFieldProps as RemoteFileFieldElementProps } from '@mittwald/flow-react-components'; export declare class RemoteFileFieldElement extends FlowRemoteElement { static get remoteAttributes(): string[]; static get remoteProperties(): { accept: {}; isDisabled: {}; isInvalid: {}; isReadOnly: {}; isRequired: {}; multiple: {}; name: {}; validationBehavior: {}; }; static get remoteEvents(): { change: {}; }; static get remoteSlots(): never[]; } declare global { interface HTMLElementTagNameMap { "flr-file-field": InstanceType; } }