import type { Application } from '../../declarations'; import { TokensService } from './tokens.class'; import { tokensPath } from './tokens.shared'; export * from './tokens.class'; export * from './tokens.schema'; export declare const tokens: (app: Application) => void; declare module '../../declarations' { interface ServiceTypes { [tokensPath]: TokensService; } }