import * as React from 'react';
import { AccessLevel, ChartDefinition } from '../../types';
import { ExternalChartDefinition } from '../../AdaptableState/ChartingState';
export interface ButtonDeleteProps {
    chart: ChartDefinition | ExternalChartDefinition;
    accessLevel: AccessLevel;
    iconSize?: number;
}
export declare const DeleteChartButton: React.FunctionComponent<ButtonDeleteProps>;
