import { IQuery } from '@nestjs/cqrs'; export declare class UseApiKeyQuery implements IQuery { readonly token: string; static readonly type = "[ApiKey] Use"; constructor(token: string); }