import { TagToken } from "remarkable/lib";
export interface InlineToken {
    type: "inline";
    content?: string;
    level: number;
}
export declare const isInline: (token: TagToken) => token is InlineToken;
