import type { StructuredDocumentation } from '../types';
export interface NatSpecTag {
    tag: string;
    args: string;
}
export interface NodeWithDocumentation {
    documentation?: string | StructuredDocumentation | null;
}
export declare function parseNatSpec(node: NodeWithDocumentation): NatSpecTag[];
export declare function execall(re: RegExp, text: string): Generator<RegExpExecArray, void, unknown>;
//# sourceMappingURL=parse-natspec.d.ts.map