/** * Scoring Rule locale */ type ScoringRulesLocale = 'en' | 'international'; /** * Determines the locale of scoring rules based on the `culture` property of the input item. * English and Non-English items are scored using different rules. * * @param culture The locale information of an ArcGIS Online item or User accounr. * @returns Returns 'en' for English items, otherwise returns 'international'. */ export declare const getScoringRulesLocale: (culture: string) => ScoringRulesLocale; /** * Determines the locale of scoring rules based on the `owner` property of the input item. * English and Non-English items are scored using different rules. * * @param owner The owner of ArcGIS Online item. * @returns Returns 'international' if the content is owned by one of International distributors, otherwise returns 'en'. */ export declare const getScoringRulesLocaleByItemOwner: (owner: string) => ScoringRulesLocale; export {};