import * as ts from "typescript";
import { Node, Expression } from "./../common";
export declare class ExportAssignment extends Node<ts.ExportAssignment> {
    /**
     * Gets if this is an export equals assignemnt.
     *
     * If this is false, then it's `export default`.
     */
    isExportEquals(): boolean;
    /**
     * Gets the export assignment expression.
     */
    getExpression(): Expression;
    /**
     * Removes this export assignment.
     */
    remove(): void;
}
