import { Base, Type } from "igniteui-react-core";
import { CellShiftDeleteReason } from "./CellShiftDeleteReason";
/**
 * @hidden
 */
export declare class ShiftAddressResult extends Base {
    static $t: Type;
    static readonly d: ShiftAddressResult;
    static readonly c: ShiftAddressResult;
    private a;
    private e;
    constructor(a: number, b: boolean);
    constructor(a: number, b: boolean, c: CellShiftDeleteReason);
    constructor(a: number, ..._rest: any[]);
    get b(): CellShiftDeleteReason;
    get f(): boolean;
    get g(): boolean;
}
