export declare function occurrences(str: string, subString: string): number;
export declare function scoreKeyFields(keyFields: string): number;
export type Lazy<T> = {
    get(): T;
    invalidate(): void;
};
export declare function lazy<T>(factory: () => T): {
    get(): T;
    invalidate(): void;
};
//# sourceMappingURL=helpers.d.ts.map