/** * @license * Copyright (c) 2025 - 2026 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import type { Constructor } from '@open-wc/dedupe-mixin'; /** * A mixin that allows to set partial I18N properties. */ export declare function I18nMixin>( defaultI18n: I, superclass: T, ): Constructor> & T; export declare class I18nMixinClass { /** * The object used to localize this component. To change the default * localization, replace this with an object that provides all properties, or * just the individual properties you want to change. */ i18n: I; }