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