import type { Static } from '@feathersjs/typebox'; import type { HookContext } from '../../../declarations'; import type { BenchmarkComparisonService } from './comparison.class'; export declare const benchmarkComparisonQuerySchema: import("@feathersjs/typebox").TObject<{ scope: import("@feathersjs/typebox").TOptional, import("@feathersjs/typebox").TLiteral<"trader">]>>; traderId: import("@feathersjs/typebox").TOptional>; startTime: import("@feathersjs/typebox").TOptional; endTime: import("@feathersjs/typebox").TOptional; benchmarks: import("@feathersjs/typebox").TOptional; riskFreeRate: import("@feathersjs/typebox").TOptional; intervalMinutes: import("@feathersjs/typebox").TOptional; }>; export type BenchmarkComparisonQuery = Static; export declare const benchmarkComparisonQueryValidator: import("@feathersjs/schema").Validator; export declare const benchmarkComparisonQueryResolver: import("@feathersjs/schema").Resolver<{ scope?: "account" | "trader" | undefined; traderId?: string | undefined; startTime?: any; endTime?: any; benchmarks?: any; riskFreeRate?: any; intervalMinutes?: any; }, HookContext>;