/**
 * Gallery entry — upload (headless upload queue: concurrency, progress,
 * dedupe by key, cancel/retry/remove; the transport is the only I/O).
 */
import { createUploadCore } from '../../upload/index.js';
import type { RegisteredComponent } from '../../inspector/index.js';
import type { UploadTransport } from '../../upload/index.js';
declare const transport: UploadTransport;
type UploadConfig = {
    transport: typeof transport;
};
export declare const uploadEntry: RegisteredComponent<UploadConfig, ReturnType<typeof createUploadCore>>;
export {};
//# sourceMappingURL=upload.d.ts.map