UNPKG

alinea

Version:
11 lines (10 loc) 464 B
import type { Entry } from 'alinea/core/Entry'; import { type UploadDestination } from '../../hook/UseUploads.js'; export interface FileUploaderProps { onlyImages?: boolean; destination?: UploadDestination; max?: number; toggleSelect?: (id: Entry) => void; position?: 'left' | 'right'; } export declare function FileUploader({ onlyImages, destination, max, toggleSelect, position }: FileUploaderProps): import("react/jsx-runtime").JSX.Element;