import type { UmbConfigCollectionEntryModel } from './types.js'; /** * Get a value from a config collection by its alias. * @template {UmbConfigCollectionEntryModel} T * @template {T['alias']} K * @param {T[] | undefined} config - The config collection to get the value from. * @param {K} alias - The alias of the config entry to get the value for. * @returns {Extract['value'] | undefined} The value of the config entry with the specified alias, or undefined if not found. */ export declare function getConfigValue(config: T[] | undefined, alias: K): Extract["value"] | undefined;