declare const createPreviewController: () => {
    /**
     * Transforms an entry into a preview URL, so that it can be previewed
     * in the Content Manager.
     */
    getPreviewUrl(ctx: import("koa").Context): Promise<{
        data: {
            url: string | undefined;
        };
    }>;
    /**
     * Serves the standalone preview script verbatim as JavaScript. The admin fetches
     * this, injects the config, and posts it to the preview iframe
     */
    getPreviewScript(ctx: import("koa").Context): Promise<void>;
};
export { createPreviewController };
//# sourceMappingURL=preview.d.ts.map