import { Variable, VariableSummary } from '@mtna/pojo-consumer-ui'; export declare class RdsVariableUtil { /** * @param v1 First variable to compare * @param v2 Second variable to compare * @returns Whether the two variables are the same */ static compareVariables(v1: Variable | VariableSummary, v2: Variable | VariableSummary): boolean; /** Search function for filtering variables. * @param text check and see if this text exists in the variable's name, labal, or id * @param v variable to check * @returns whether the search text exists in a variable's name, label, or id */ static filterVariable(text: string, v: Variable | VariableSummary): boolean; }