import { TemplateComponent } from "./template"; export declare class DetailsComponent { selector: string; /*** * construct a hover over details window (determined by the "chart_details" string passed to TemplateComponent class) */ offset: any; detailsTemplate: TemplateComponent; constructor(selector: string); readonly view: any; readonly content: any; readonly dimension: any; show(): DetailsComponent; hide(): this; position: any; createView(): DetailsComponent; updateView(detailsObj: any): DetailsComponent; updatePositionAbove(location: any, container: any): DetailsComponent; updatePositionOffCenter(location: any, container: any): DetailsComponent; }