import { Action } from "../../internal/Action.js";
/**
 * @description Creates the 3D_lut layer transformation
 * @memberOf Actions.Adjust
 * @extends SDK.Action
 */
declare class By3dLutAction extends Action {
    readonly publicId: string;
    constructor(publicId: string);
    /**
     * Returns a string representation of the action
     * @return {string}
     */
    toString(): string;
}
export { By3dLutAction };
