import { LexascmsContent } from '../types/lexascms';
export declare const extractContent: (content: LexascmsContent | null) => {
    componentName: string;
    props: {
        [prop: string]: any;
        type: string;
        id: string;
    };
}[];
export declare const RenderContent: {
    render: (createElement: any) => any;
    props: {
        content: import("vue").PropOptions<{} | []>;
    };
};
