export interface Z3GetPresignedUrlParams {
    action: 'upload' | 'download';
    /**
     * An optional parameter that determines which type of S3 object should be created.
     */
    isFolder?: boolean;
    bucketName: string;
    'objectPath+': string;
}
