import '../header-component/header-component'; import '../loader-component/loader-component'; /** #### Sample screen shot ![image info](https://infonet.nyp.org/webc/PublishingImages/about-component.PNG) #### Content Type nypwebc_ct_about */ export declare class AboutComponent { /** *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; /** *Required - if header attribute is true */ sectiontitle: string; /** *Required - if header attribute is true */ titleiconurl: string; /** *Optional - image location - left, right,top or bottom */ imagepos: string; /** *Optional - image col span if image pos is left or right. default is 3 */ imagecolspan: number; /** *Optional - To show/hide header - default is true */ header: boolean; /** *Optional - vertical scroll bar */ verticalscroll: boolean; /** *Optional - vertical scroll bar height */ verticalscrollheight: number; /** *Optional - header background color */ headerbgcolor: string; /** *Optional -header text color */ headertextcolor: string; /** *Optional -header border bottom css */ headerborderbottom: string; /** *Optional -embeded video true or false */ embededvideo: boolean; /** *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; }