export declare class SignetLogo { /** * The name of the product. This is used to determine the logo to display. */ name: 'episource' | 'coder' | 'analyst' | 'submitter' | 'hub' | 'signet' | 'connect' | 'adaptive-coder' | 'portal'; /** * The alternative text for the logo image. * This is used for accessibility purposes. * It is set based on the product name. * If not provided, a default value will be used. * @default 'EpiSource Logo' */ /** * The alternative text for the logo image. * This is used for accessibility purposes. * It is set based on the product name. * If not provided, a default value will be used. * @default 'EpiSource Logo' */ alt?: string; /** * The destination URL for the logo link. * This is set based on the product name. * If not provided, a default value will be used. * @default 'http://episource.com' */ href?: string; /** * Each logo already has a default src file. * If you want to change your logo, you can specify another image src. * @default '' */ src?: string; private getLogoLink; private getImageLink; private getAltText; render(): any; }