export default eatHTMLProcessingInstruction; /** * Try to match a processing instruction. * * @param {string} value - Value to parse. * @return {string?} - When applicable, the processing * instruction at the start of `value`. */ declare function eatHTMLProcessingInstruction(value: string): string;