export declare function findClosingTagIndex(content: string, methodStartIndex: number, tags?: {
    open: string;
    close: string;
    comment: string;
}): number;
export declare function stripNonCode(content: string, regex: string): string;
export declare const TagDefinitions: {
    CURLY: {
        open: string;
        close: string;
        comment: string;
    };
    XML: {
        open: string;
        close: string;
        comment: string;
    };
    POD: {
        open: string;
        close: string;
        comment: string;
    };
    BRACKETS: {
        open: string;
        close: string;
        comment: string;
    };
};
