import { ListPanel } from "./ListPanel"; import { Type } from "igniteui-angular-core"; import { Size } from "igniteui-angular-core"; import { FontInfo } from "igniteui-angular-core"; /** * @hidden */ export interface IListPanelView { onInit(): void; onContainerProvided(a: any): void; setGridHeight(): void; onTemplateProvided(a: any, b: any): void; notifySizeChanged(a: Size): void; measureString(a: string): number; getDefaultCellTextStyle(): FontInfo; getAvailableWidth(): number; getContainer(a: any, b: (arg1: any) => void): void; getUIContext(): any; needsMeasure(a: number, b: number): void; model: ListPanel; } /** * @hidden */ export declare let IListPanelView_$type: Type;