import { ClassBindings } from "../../decorators/index"; /** Container for Insight Cards. */ export declare class SpsInsightsComponent extends HTMLElement { static readonly displayName = "sps-insights"; static readonly props: {}; private content; private details; private showAdditionalInsights; get [ClassBindings](): string[]; constructor(); /** * Only the first ten Insight Cards are visible by default; the rest are behind * the "Show Additional Insights"/"Hide Additional Insights" button. This method * will toggle the additional insights. */ toggleAdditionalInsights(): void; render(): JSX.Element; }