interface SecretSetProps {
    secretArn: string;
    cipherText: string;
    keyId: string;
}
export declare const handler: (event: SecretSetProps) => Promise<void>;
export {};
