import { Description } from "./Description";
import { PrimaryKeyValueDescription } from "./PrimaryKeyValueDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class CellKeyDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    private static __marshalByValue;
    private static __marshalByValueAlias;
    constructor();
    private f;
    get primaryKey(): PrimaryKeyValueDescription;
    set primaryKey(a: PrimaryKeyValueDescription);
    private i;
    get rowItem(): any;
    set rowItem(a: any);
    private l;
    get columnUniqueKey(): string;
    set columnUniqueKey(a: string);
}
