import { type ImageLike } from '@happyvertical/smrt-images/svelte'; import type { ContentEditorAsset } from '../content-editor-form'; export interface Props { apiBaseUrl?: string; assets?: ContentEditorAsset[]; thumbnailAssetId?: string | null; addButtonLabel?: string; selectActionLabel?: string; showUploaderInitially?: boolean; onSelectImage?: (image: ImageLike | File | string) => void; onUseAsset?: (asset: ContentEditorAsset) => void; onRemoveAsset?: (assetId: string) => void; onUseAsThumbnail?: (assetId: string) => void; } declare const ContentImageBrowser: import("svelte").Component; type ContentImageBrowser = ReturnType; export default ContentImageBrowser; //# sourceMappingURL=ContentImageBrowser.svelte.d.ts.map