import { type Ref } from 'vue'; import type { ImageBlockConfig } from '../../config'; type Attrs = { src: string; caption: string; ratio: number; }; export type MilkdownImageBlockProps = { selected: Ref; readonly: Ref; setAttr: (attr: T, value: Attrs[T]) => void; config: ImageBlockConfig; } & { [P in keyof Attrs]: Ref; }; export declare const MilkdownImageBlock: import("vue").DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; export {}; //# sourceMappingURL=image-block.d.ts.map