import { RemoteAttachmentFlags } from "../../Attachments/RemoteAttachmentFlags.js"; /** * Parameters for configuring remote attachment upload behavior. * * These parameters specify when and where an attachment should be uploaded to remote cloud storage. */ export declare class RemoteAttachmentParameters { /** * The identifier of the remote storage destination configuration. * This references a configured destination in RemoteAttachmentsConfiguration. */ identifier: string; /** * Flags controlling remote attachment behavior. * @internal */ private readonly _flags; /** * Optional scheduled upload time (UTC). * When specified, the attachment will be uploaded at this time rather than immediately. */ at?: Date; constructor(identifier: string, at?: Date); /** * Gets the flags value (for internal use only). * @internal */ get flags(): RemoteAttachmentFlags; } //# sourceMappingURL=RemoteAttachmentParameters.d.ts.map