import { RdsIconLink, RdsTextLink } from '../core/models/index'; import { RdsApiService } from '../core/services/index'; /** * Toolbar with logo and configurable links * * @author Will Davis */ export declare class RdsAppToolbarComponent { private rdsApiService; /** Path to the rds logo, used as src attribute */ rdsLogo: string; /** Title text displayed next to the logo */ title: string; /** Text based links */ textLinks: Array | null; /** Icon based social media links */ socialLinks: Array | null; constructor(rdsApiService: RdsApiService); }