import type { ScoreResult } from "./calculateScore"; import type { ScoreConfig } from "./types"; /** determines whether a `ScoreResult` object is valid */ export declare const isScoreResultValid: (x: unknown) => x is ScoreResult; /** determines whether a `ScoreConfig` object is valid */ export declare const isScoreConfigValid: (x: unknown) => x is ScoreConfig;