import type { Component } from '../types'; /** * Gets a component label with fallback support. * @export * @template T * @param {T} component * @param {string} fallback * @return {*} {string} */ export declare function getLabel(component: T, fallback: string): string;