import { Variable } from '@mtna/pojo-consumer-ui'; /** * Variable Information Component to display variable properties. * * @author Zach Edwards */ export declare class RdsVariableInformationComponent { /** Required variable to display */ set variable(variable: Variable); get variable(): Variable; private _variable; /** Whether to show or hide the variable name */ showVariableName: boolean; /** Wehther there are descorator properties to show */ hasDecorators: boolean; /** Wehther there are extra properties to show */ hasMoreProperties: boolean; /** Whether to show more properties */ showMore: boolean; toggleShowMore(): void; private _hasValue; }