import { LogoName } from '../types';
/**
 * Logo information interface
 */
export interface ILogoInfo {
    /** Display name for the logo */
    displayName: string;
    /** Path to the logo SVG asset */
    path: string;
    /** Path to the emblem SVG asset (icon only) */
    emblemPath?: string;
    /** Category of the logo */
    category: 'trimble' | 'trimble_brand' | 'viewpoint';
}
/**
 * Logo variants mapping
 */
export declare const LOGO_VARIANTS: Record<LogoName, ILogoInfo>;
/**
 * Get all available logo names
 */
export declare function getAvailableLogos(): LogoName[];
/**
 * Get logos by category
 */
export declare function getLogosByCategory(category: 'trimble' | 'trimble_brand' | 'viewpoint'): LogoName[];
