import { Description } from "./Description";
import { WebPivotDimensionDescription } from "./WebPivotDimensionDescription";
import { WebPivotValueDescription } from "./WebPivotValueDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebPivotGridColumnDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private o;
    get field(): string;
    set field(a: string);
    private k;
    get dimensions(): WebPivotDimensionDescription[];
    set dimensions(a: WebPivotDimensionDescription[]);
    private m;
    get value(): WebPivotValueDescription;
    set value(a: WebPivotValueDescription);
}
