@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
16 lines (15 loc) • 669 B
TypeScript
import * as React from "react";
import { WrappedComponentProps } from "react-intl";
import { AxisType } from "../../../interfaces/AxisType";
import { IVisualizationProperties } from "../../../interfaces/Visualization";
export interface ILabelSubsection {
disabled: boolean;
configPanelDisabled: boolean;
axis: AxisType;
properties: IVisualizationProperties;
pushData: (data: any) => any;
}
declare const _default: React.FunctionComponent<import("react-intl").WithIntlProps<ILabelSubsection & WrappedComponentProps<"intl">>> & {
WrappedComponent: React.ComponentType<ILabelSubsection & WrappedComponentProps<"intl">>;
};
export default _default;