import type { MyNodeSpec, NumberedNode } from './types';
import type { Math } from '../spec';
import type { MdFormatSerialize, TexFormatSerialize } from '../serialize/types';
export declare type Attrs = NumberedNode & {
    title: string;
};
declare const equation: MyNodeSpec<Attrs, Math>;
export declare const equationNoDisplay: MyNodeSpec<Attrs, Math>;
export declare const toMarkdown: MdFormatSerialize;
export declare const toTex: TexFormatSerialize;
export default equation;
