import { Platform } from '@ng-frrri/router-middleware/internal'; import { OperatorType } from '../enums/operator-type.enum'; export interface StaticMetaOptions { title?: string; keywords?: string; description?: string; image?: string; } export declare function staticMeta(options?: StaticMetaOptions): { title?: string; keywords?: string; description?: string; image?: string; type: OperatorType.StaticMeta; platforms: Platform[]; };