import { Variable, VariableItem } from '@foxpage/foxpage-types';
import { ContentDetailInstance } from '../common';
/**
 * variable
 *
 * @export
 * @class Variable
 */
export declare class VariableInstance extends ContentDetailInstance<VariableItem> implements Variable {
    readonly type = "variable";
    constructor(data: Variable);
}
