import type { Nullable } from "..";
/**
 * Defines the property copy options resource.
 */
export declare class PropertyCopyOptionResource {
    /**
     * Gets or sets the name of the property.
     */
    property: string;
    /**
     * Gets or sets the copy method.
     */
    method: string;
    /**
     * Gets or sets the new value for the property.
     */
    newValue: Nullable<string>;
    constructor(property: string, method: string, newValue: Nullable<string>);
}
