/** * Try to match comment. * * @param {string} value - Value to parse. * @param {Object} settings - Configuration as available on * a parser. * @return {string?} - When applicable, the comment at the * start of `value`. */ declare function eatHTMLComment(value: string, settings: any): string; export default eatHTMLComment;