/** * Get the number of occurrences of a substring in a string. * @param string The string. * @param substring The substring. * @returns The number of occurrences. */ export declare function occurrences(string: string, substring: string): number;