import { Bcm } from "../models"; import { FunctionalComponent } from "../stencil-public-runtime"; interface ToolBarProps { tableId?: string; columns?: any; config?: Bcm.ToolBarButtonProps; extensions?: any; onHideColumn?: (obj: any) => void; onSearch?: (text: any) => void; onSelectExportType?: (type: any) => void; } export declare const ToolbarTemplate: FunctionalComponent; export {};