import { 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<T extends Component>(component: T, fallback: string): string;
