import * as React from 'react'; import { ListView, ListViewModel } from '@syncfusion/ej2-lists'; import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base'; export interface ListViewTypecast { template?: string | Function | any; groupTemplate?: string | Function | any; headerTemplate?: string | Function | any; } /** * Represents ListView component for React * ``` * * ``` */ export declare class ListViewComponent extends ListView { state: Readonly<{ children?: React.ReactNode | React.ReactNode[]; }> & Readonly; setState: any; private getDefaultAttributes; initRenderCalled: boolean; private checkInjectedModules; private statelessTemplateProps; private templateProps; private immediateRender; private isReactMock; props: Readonly<{ children?: React.ReactNode | React.ReactNode[]; }> & Readonly; forceUpdate: (callBack?: () => any) => void; context: Object; portals: any; isReactComponent: Object; refs: { [key: string]: React.ReactInstance; }; constructor(props: any); render(): any; }