import type * as types from "./types"; import type { FilesRef } from "../FormDefinition"; export interface FilePicker extends types.ElementBase, types.EditableElement, types.ElementWithRequire { /** Indicates a comma-separated list of file extensions and MIME types that you want to accept. */ readonly fileTypes: string; /** Indicates the current value. */ readonly value: FilesRef; }