import { ReactParamsType } from "xbsj-xe2/dist-node/xe2-base-utils"; import { ReactVarProperty } from "./ReactVarProperty"; import { DVT } from "./WithUndefinedProperty"; declare type ParamTypes = ('string' | 'number' | 'boolean' | 'strings' | 'numbers' | 'booleans' | ['string' | 'number' | 'boolean' | 'strings' | 'numbers' | 'booleans', string])[]; export declare class ParamsProperty extends ReactVarProperty { private _paramTypes; constructor(name: string, description: string, reactVar: ReactParamsType, _paramTypes: ParamTypes, defaultValue?: DVT); get type(): string; get paramTypes(): ParamTypes; } export {};