import { type Ref } from 'vue'; import type { InlineImageConfig } from '../config'; type Attrs = { src: string; alt: string; title: string; }; type MilkdownImageInlineProps = { selected: Ref; readonly: Ref; setAttr: (attr: T, value: Attrs[T]) => void; config: InlineImageConfig; } & { [P in keyof Attrs]: Ref; }; export declare const MilkdownImageInline: import("vue").DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; export {}; //# sourceMappingURL=image-inline.d.ts.map