import type { PMF } from "../pmf/pmf.js"; /** Enable or disable the internal parse cache. */ export declare function setCachingEnabled(enabled: boolean): void; /** Returns whether the internal parse cache is currently enabled. */ export declare function getCachingEnabled(): boolean; /** Clears the internal parse cache. */ export declare function clearParserCache(): void; /** * Parse a dice expression into a PMF. * * - Expression is case-insensitive and ignores spaces. */ export declare function parse(expression: string, n?: number): PMF; //# sourceMappingURL=parser.d.ts.map