import '../header-component/header-component'; import '../loader-component/loader-component'; /** #### Sample screen shot ![image info](https://infonet.nyp.org/webc/PublishingImages/ticker-component.PNG) #### Content Type nypwebc_ct_about */ export declare class TickerComponent { /** *Required - Unique ID. */ componentid: string; /** *Required - List Name. */ listname: string; /** *Required - Relative to the root site. no trailing slash. for ex: /hr/pm */ webpath: string; /** *Optional - is it SP Online site */ online: boolean; /** *Required - site url if its sp online site */ siteurl: string; isLoading: boolean; items: []; componentDidLoad(): Promise; getContents: () => any[]; render(): any; }