import { FunctionComponent } from 'react'; export interface HtmlPageProps { /** * The token sent by the server to prevent CSRF. */ csrfToken: string; /** * The nonce to be used for the inline scripts and styles. */ nonce: string; /** * The script for pre-loaded data. */ preloaded: string; } /** * The empty HTML page. This page should have the language URLs as a children element. */ declare const HtmlPage: FunctionComponent; export default HtmlPage;