import { FunctionalComponent } from '../stencil-public-runtime'; import Bcm from '../models/bcm'; interface ListTemplateProps extends Bcm.ListClickEvent { type?: string; treeview?: any; checkboxes?: any; bcmListContainer?: any; infoFooter?: any; searchPlaceholder?: string; minSearchLength?: number; searchIsOnlyChilds?: boolean; value?: any; totalData?: any; searchFound?: any; variableText?: any; size?: any; items?: any; _id?: any; tempId?: any; data?: any; width?: any; height?: any; checkAll?: any; selectAllItem?: any; searchable?: any; highlight?: any; emptyText?: any; emptyIcon?: any; focusItem?: (event: any) => void; handleTransitionEnd?: (event: any) => void; } export declare const ListTemplate: FunctionalComponent; export {};