import type { ReStruct } from "../../../render";
import BaseOperation from '../BaseOperation';
declare type Data = {
    atomId: number;
    attachmentPointType: any;
    attachmentPointId: number;
};
declare class RGroupAttachmentPointRemove extends BaseOperation {
    readonly data: Data;
    static InverseConstructor: new () => BaseOperation;
    constructor(attachmentPointId?: number);
    execute(restruct: ReStruct): void;
    invert(): BaseOperation;
}
export { RGroupAttachmentPointRemove };
