import React from 'react'; export interface DocumentAsset { path: string; hash?: string; } export interface DocumentProps { basePath?: string; charset?: string; lang?: string; title?: string; viewport?: string; loading?: React.ReactNode; staticPath?: string; favicons?: DocumentAsset[]; stylesheets?: DocumentAsset[]; scripts?: DocumentAsset[]; } export default function Document(props: DocumentProps): React.JSX.Element; //# sourceMappingURL=Document.d.ts.map