import PlatformTransferOptions from './PlatformTransferOptions';
export default interface PlatformUploadOptions extends PlatformTransferOptions {
    /**
     * This is the subfolder under which the uploaded files will be placed
     */
    destinationPath?: string;
    /**
     * Optional metadata to associate with the transfer, this metadata should match the metadata format
     * expected by the portal and previously configured there.
     */
    metadata?: Record<string, unknown>;
}
//# sourceMappingURL=PlatformUploadOptions.d.ts.map