export declare class ProfileTabs { /** Array with child arrays containing Tab Heading, Tab ID, and Text(optional) */ headings: any; /**Specify Tab ID you want to keep open by default */ activeid: string; /** The URL of the database to fetch profiles from (firebase) */ database: string; profiles: any; activebio: any; modalopen: boolean; componentDidLoad(): void; createTabs(): any; mapToCards(data: any, filterId: any, category: any): any[]; launchBio(): any; openModal(id: any): void; closeHandler(): void; render(): any[]; }