import { Poke } from '../lib/types'; import { S3UpdateAccessKeyId, S3UpdateAddBucket, S3UpdateCurrentBucket, S3UpdateEndpoint, S3UpdateRemoveBucket, S3UpdateSecretAccessKey } from './types'; export declare const setCurrentBucket: (bucket: string) => Poke; export declare const addBucket: (bucket: string) => Poke; export declare const removeBucket: (bucket: string) => Poke; export declare const setEndpoint: (endpoint: string) => Poke; export declare const setAccessKeyId: (accessKeyId: string) => Poke; export declare const setSecretAccessKey: (secretAccessKey: string) => Poke;