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>> & { WrappedComponent: React.ComponentType>; }; export default _default;