import React from "react"; import { BindComponent } from "@webiny/form/types"; interface CustomSectionProps { Bind: BindComponent; data: Record; entity: string; setValue: (permission: string, type: string) => void; title: string; disabled?: boolean; children?: React.ReactNode; } declare const CustomSection: ({ Bind, data, entity, setValue, title, disabled, children }: CustomSectionProps) => React.JSX.Element; export default CustomSection;