/** What a row with no cure — every ALLOW row, and every layer this module does not own — logs. */ export declare const NO_CURE = "-"; /** * The literal cure for a layer+row, for the log line. `-` when the row allows, or when the layer is * not one this module owns. * * Markdown backticks are stripped: the doc is read by a human in a renderer, the log is read through * `grep`, and a cure you cannot grep for without escaping the fence characters is a cure the trail * cannot be searched by. The words are otherwise untouched, so the log and the doc stay comparable * literal-for-literal, which is the point of deriving one from the other. */ export declare function cureForMatrix(layer: string, row: string): string;