import '../header-component/header-component'; import '../loader-component/loader-component'; import 'fomantic-ui/dist/semantic.min.js'; /** #### Sample screen shot ![image info](https://infonet.nyp.org/webc/PublishingImages/accordionfreetext_component.PNG) #### Content Type nypwebc_ct_threelevel */ export declare class ThreelevelComponent { /** *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 - To show/hide header. default is true */ header: boolean; /** *Optional - vertical scroll bar */ verticalscroll: boolean; /** *Optional - vertical scroll bar height */ verticalscrollheight: number; /** *Optional - To show see All link */ seeall: boolean; /** *Optional - see All Url */ seeallurl: string; /** *Optional - see All link Title */ seealltitle: string; /** *Optional - number of items to retrieve */ count: number; /** *Optional - header background color */ headerbgcolor: string; /** *Optional -header text color */ headertextcolor: string; /** *Optional -header border bottom css */ headerborderbottom: string; /** *Optional - headertext location */ headerlocation: string; /** *Optional - is it SP Online site */ online: boolean; /** *Required - site url if its sp online site */ siteurl: string; /** *Required - site url if its sp online site */ iconlocation: string; /** *Optional - Expand /collapse all toggle */ exptoggle: boolean; items: []; isLoading: boolean; expandallclick: boolean; expandbuttonclick: boolean; componentDidRender(): void; componentDidLoad(): Promise; getHtml: (rawContent: any) => string; getContents: () => any[]; getExpandAll: () => any[]; handleClick: () => void; initializeAccoridion: () => void; render(): any; }