import type { Image } from '../spec';
import type { NumberedNode, MyNodeSpec, AlignOptions } from './types';
import type { MdFormatSerialize, TexFormatSerialize } from '../serialize/types';
export declare type Attrs = NumberedNode & {
    src: string;
    alt: string;
    title: string;
    align: AlignOptions;
    width: number | null;
    caption: boolean;
};
declare const image: MyNodeSpec<Attrs, Image>;
export declare const toMarkdown: MdFormatSerialize;
export declare const toTex: TexFormatSerialize;
export default image;
