import { IMethodAttributes } from '../types/code-editor'; export declare function parseAttributes(content: string): IMethodAttributes; export declare function stringifyAttributes(attributes: Partial): string; export declare function addAttributesToContent(content: string, attributes: string | Partial, override?: boolean): string; export declare function hasAttributesString(content: string): boolean; export declare function removeAttributesString(content: string): string;