import "./FullPreview.css"; interface FullPreviewProps { content: string; title?: string; onRebuild: (content: string, title: string, postToIframe: (url: string, data: any) => void) => void; } export interface FullPreviewHandle { rebuild: () => void; } declare const FullPreview: import("react").ForwardRefExoticComponent>; export default FullPreview;