import { RuleInline } from 'markdown-it'; export interface IParseImageParams { attr: Array>; align: string; latex: string; } export declare const parseImageParams: (str: string, align?: string) => IParseImageParams | null; /** Process ![image]( "title") * Replace image inline rule: * Process: * ![image]( "title") * ![image]( "title"){width=50%} * ![image]( "title"){width="10px"} * ![image]( "title"){width="20px",height="20px"} * ![image]( "title"){width="20px",height="20px",right} * */ export declare const imageWithSize: RuleInline; export declare const renderRuleImage: (tokens: any, idx: any, options: any, env: any, slf: any) => any;