export interface GuardrailConfig { name: string; description?: string; guards: Array<{ type: string; enabled: boolean; config: Record; }>; failAction: 'block' | 'warn' | 'redact'; } export declare function listGuardsCommand(): void; export declare function createGuardrailCommand(): Promise; export declare function listGuardrailsCommand(): void; export declare function getGuardrailCommand(name: string): void; export declare function deleteGuardrailCommand(name: string): Promise; export declare function testGuardrailCommand(pipelineName?: string): Promise; //# sourceMappingURL=guardrails.d.ts.map