import type { Annotation } from "./Annotation"; export declare class QueryAnnotation implements Annotation { readonly name = "query"; readonly read: boolean; readonly aggregate: boolean; readonly connection: boolean; constructor({ read, aggregate, connection }: { read: boolean; aggregate: boolean; connection: boolean; }); } //# sourceMappingURL=QueryAnnotation.d.ts.map