import * as React from "react"; import { ColProps } from "antd"; declare type BaseProps = { title: string; url: string; configurationId: string; allowEdit?: boolean; name?: string; disabled?: boolean; containerStyles?: React.CSSProperties | undefined; labelCol?: ColProps; formikDebug?: boolean; subHeader?: React.ReactElement; }; declare type WithChildren = BaseProps & { type: "children"; children: React.ReactNode; }; declare type WithEditors = BaseProps & { type?: "editors"; overrideEditors?: { [key: string]: React.ReactNode; }; }; declare type Props = WithChildren | WithEditors; export declare function StronglyTypedOptions({ containerStyles, labelCol, title, url, configurationId, allowEdit, name, disabled, formikDebug, subHeader, ...rest }: Props): JSX.Element; export {}; //# sourceMappingURL=strongly-typed-options.d.ts.map