export interface IListViewDelegate { onDataLoadStarted?: () => void; onDataLoadComplete?: (success: boolean, error: Error | null, dataCount: number) => void; onPlayerDismissed?: () => void; } export declare class ListViewDelegate implements IListViewDelegate { onDataLoadStarted: () => void; onDataLoadComplete: (success: boolean, error: Error | null, dataCount: number) => void; onPlayerDismissed: () => void; }