/**
 * The CloneImageDto represents the data
 * transfer object, which is used for defining
 * the options to clone an image
 */
export declare class CloneImageDto {
    /**
     * The id of the source remote
     */
    sourceRemoteId: number;
    /**
     * The id of the destination remote
     */
    destinationRemoteId: number;
}
