UNPKG

burdy

Version:

Open Source Headless Platform

22 lines (21 loc) 582 B
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;