import type { Database } from "../client.js"; export declare function policyQueries(db: Database): { findAll(tenantId?: string): Promise; findById(id: string, tenantId?: string): Promise; create(data: { name: string; description?: string | null; scannerIds: string[]; action: string; sensitivityThreshold?: number; tenantId?: string; }): Promise; update(id: string, data: Partial<{ name: string; description: string | null; scannerIds: string[]; action: string; sensitivityThreshold: number; isEnabled: boolean; }>, tenantId?: string): Promise; delete(id: string, tenantId?: string): Promise; /** Get all enabled policies for detection flow */ getEnabled(tenantId?: string): Promise; }; //# sourceMappingURL=policies.d.ts.map