import React from 'react';
import { SelectionMode } from '@fluentui/react';
interface IContentTypesComponentsSelectPanelProps {
    isOpen?: boolean;
    ids?: string[];
    error?: string;
    filter?: any;
    selectionMode?: SelectionMode;
    onDismiss?: () => void;
    onSubmit?: (e: any) => void;
}
declare const _default: React.ForwardRefExoticComponent<IContentTypesComponentsSelectPanelProps & {
    contentTypesContext?: {
        children: any;
    } & Partial<{
        disable?: boolean;
    }>;
} & Partial<{
    unwrap?: boolean;
}> & React.RefAttributes<unknown>>;
export default _default;
