import type { DOMAttributes } from 'react';
export declare function registerPreviewWidget(): void;
declare global {
    namespace JSX {
        interface IntrinsicElements {
            'alinea-preview': DOMAttributes<HTMLElement> & {
                adminUrl: string;
                editUrl: string;
                livePreview?: 'connected' | 'warning' | 'loading';
            };
        }
    }
}
