import { ParameterValue } from './';
export declare class ParameterInfo {
    name: string;
    type: string;
    text: string;
    multivalue: boolean;
    allowNull: boolean;
    allowBlank: boolean;
    isVisible: boolean;
    autoRefresh: boolean;
    hasChildParameters: boolean;
    childParameters: ParameterInfo[];
    availableValues: ParameterValue[];
    value: any;
    id: string;
    label: string;
}
