import * as React from 'react'; import { SimpleButtonProps } from '../../../components/SimpleButton'; import { AdaptableSharedEntityConfig } from '../../../AdaptableState/TeamSharingState'; interface ButtonShareProps extends SimpleButtonProps { onShare: (config: AdaptableSharedEntityConfig) => void; Header: string; } interface ButtonShareState { open: boolean; } export declare class ButtonShare extends React.Component { constructor(props: ButtonShareProps); render(): React.JSX.Element; } export {};