import React from 'react';
interface IFieldsSelectPanelProps {
    isOpen?: boolean;
    type?: string;
    error?: string;
    onDismiss?: () => void;
    onSubmit?: (e: any) => void;
}
declare const _default: React.ForwardRefExoticComponent<IFieldsSelectPanelProps & {
    contentTypesContext?: {
        children: any;
    } & Partial<{
        disable?: boolean;
    }>;
} & Partial<{
    unwrap?: boolean;
}> & React.RefAttributes<unknown>>;
export default _default;
