import * as React from "react";
import { WrappedComponentProps } from "react-intl";
export interface IConfigSubsectionProps {
    valuePath?: string;
    title: string;
    canBeToggled?: boolean;
    toggleDisabled?: boolean;
    toggledOn?: boolean;
    showDisabledMessage?: boolean;
    properties?: any;
    pushData?(data: any): void;
}
export interface IConfigSubsectionState {
    disabled: boolean;
}
declare const _default: React.FunctionComponent<import("react-intl").WithIntlProps<IConfigSubsectionProps & WrappedComponentProps<"intl">>> & {
    WrappedComponent: React.ComponentType<IConfigSubsectionProps & WrappedComponentProps<"intl">>;
};
export default _default;
