import { BaseParams } from '../types'; interface ExtractCommentsParams extends BaseParams { content: string; regexFactory(): RegExp; read?: string; } export declare function addCommentSectionKeys({ content, regexFactory, read, ...baseParams }: ExtractCommentsParams): void; export {};