export declare type AccessKey = {
    /**
     * The object storage secret_key.
     */
    secret_key?: string;
    /**
     * The object storage access_key.
     */
    access_key?: string;
    /**
     * Account this credentials belong to.
     */
    user?: string;
};
