import { Platform } from '@ng-frrri/router-middleware/internal'; import { OperatorType } from '../enums/operator-type.enum'; import { StaticMetaOptions } from './static-meta.operator'; export interface ActiveMetaOptions { factory: (data: T) => StaticMetaOptions; } export declare function activeMeta(statePath: string, options: ActiveMetaOptions): { factory: (data: T) => StaticMetaOptions; type: OperatorType.ActiveMeta; statePath: string; platforms: Platform[]; };