/**
* Get the initial HTML sent from server-side
* @param {any} documentData
*/
export declare function getInitialDocument(documentData: any): string;
export declare function getInitialDocumentData(context: any): {
title: any;
htmlAttrs: string;
headAttrs: any;
bodyAttrs: any;
link: any;
style: string;
headScript: any;
bodyScript: string;
noscript: any;
meta: any;
};