/** * | output | * | --- | * | "Auto (Browser)" | * * @param {AutoInputs} inputs * @param {{ locale?: "af" | "ar" | "en" | "en-GB" | "en-US" | "en-ZA" | "es" | "es-US" | "fr" | "fr-CA" | "fr-FR" }} options * @returns {LocalizedString} */ export const auto: ((inputs?: AutoInputs, options?: { locale?: "af" | "ar" | "en" | "en-GB" | "en-US" | "en-ZA" | "es" | "es-US" | "fr" | "fr-CA" | "fr-FR"; }) => LocalizedString) & import("../runtime.js").MessageMetadata; export type LocalizedString = import("../runtime.js").LocalizedString; export type AutoInputs = {};