import { default as React } from 'react';
interface WidgetProps {
    externalAction?: boolean;
    children: React.ReactNode;
    label: string;
    onSelectTab?: (tab: string) => void;
    onClick?: () => void;
    tab?: string;
}
declare const Widget: React.FC<WidgetProps>;
export default Widget;
