/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format */ import React from 'react'; export type DocMetadata = { description?: string; title?: string; editUrl?: string | null; lastUpdatedAt?: number; formattedLastUpdatedAt?: string; lastUpdatedBy?: string; }; export declare function EditorTrigger({ position, }: { position: 'before-post' | 'after-post'; }): React.JSX.Element | null; export declare function ClosableDiv({ children, onClose, }: { children: React.ReactNode; onClose: () => void; }): React.JSX.Element;