import {DCC} from "./"; declare class Rule { static fromFile(filePath: string | Buffer | URL, external?: Record): Rule; static fromJSON(ruleJSON: Record, external?: Record): Rule; get payload(): Record; getDescription(language?: string): string | null; evaluateDCC(dcc: DCC, external?: Record): any; } export {Rule}