import Token from 'markdown-it/lib/token'; export interface DecoratorOptions { customClass?: string; hide: { id?: boolean; classes?: boolean; attributes?: boolean; }; } export declare const decorator: (contents: string[], customClass?: string) => string; export declare const attributeDecorator: (token: Token, options?: DecoratorOptions) => string;