import React from 'react'; import { IPost } from '@shared/interfaces/model'; interface IPostPublishDialogProps { posts: IPost[]; isOpen?: boolean; title?: string; onDismiss?: () => void; onUpdated?: (data?: any) => void; disableRecursive?: boolean; handleContentSubmit?: any; } declare const PostPublishDialog: React.FC; export default PostPublishDialog;