import { type ReactNode } from "react"; export interface IConfigSectionProps { id: string; valuePath?: string; canBeToggled?: boolean; toggleDisabled?: boolean; toggledOn?: boolean; propertiesMeta?: any; properties?: any; title?: string; subtitle?: string; showDisabledMessage?: boolean; className?: string; pushData?(data: any): void; children?: ReactNode; toggleMessageId?: string; } export declare function ConfigSection({ id, valuePath, canBeToggled, toggleDisabled, toggledOn, propertiesMeta, properties, title, subtitle, showDisabledMessage, className, pushData, children, toggleMessageId }: IConfigSectionProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ConfigSection.d.ts.map