/** * The full media-library gallery (folders, upload, search), for hosts that * wire `onGalleryManager`. Mounted only while open, same as `ImageGallery` — * `` brings its own drawer chrome, so this wrapper just creates * it, feeds it a manager, and forwards its `file`/`close` events; it owns no * UI of its own. A plain `document.createElement` + ref, not JSX, because * `cdtr-gallery` is a runtime-registered custom element with no * `JSX.IntrinsicElements` entry — matches how this codebase already mounts * other native elements imperatively (see PublishPopover's textarea). */ export declare function CreaditorGallery({ onPick, onClose, }: { onPick: (url: string) => void; onClose: () => void; }): import("react").JSX.Element;