///
import type { filtersType } from '@dream2023/data-mapping';
import type { SchemaRenderContextProps } from 'react-schema-render';
import type { ComponentPropsType } from './../../render/src/componentPropsParser';
import type { AxiosContextProps } from './../../shared/src/hooks/useAxios/types';
import type { CommunicationProps } from './../../shared/src/hooks/useCommunication';
export interface SuperAntdContextProps extends CommunicationProps, SchemaRenderContextProps, AxiosContextProps {
componentProps?: ComponentPropsType;
delimiters?: [string, string];
filters?: filtersType;
}
export declare const SuperAntdContext: import("react").Context;
export default SuperAntdContext;