/** * Parse an expect string and compare against a value. * * Supported formats: * "equals:{value}" - exact string match * "contains:{value}" - substring match */ export declare function checkExpect(expectStr: string, actual: unknown): { pass: boolean; message: string; }; //# sourceMappingURL=expect.d.ts.map