export declare class S3Service {
    private client;
    private bucket;
    private prefix;
    constructor(bucket: string, prefix: string, region?: string);
    downloadAllRules(localDir: string): Promise<void>;
    uploadRule(ruleYaml: string, ruleId: string): Promise<void>;
}
