/** @format */
/**
 * Represents data for a PSD layer.
 */
export declare class PsdLayerData {
    /**
     * The tag associated with the PSD layer.
     */
    private _tag;
    /**
     * Gets the tag associated with the PSD layer.
     * @returns {string} The tag as a string.
     */
    get tag(): string;
    /**
     * Initializes a new instance of the PsdLayerData class.
     * @param {string} tag - The tag to associate with the PSD layer.
     */
    constructor(tag: string);
}
