import type { UmmResponse, UmmResult } from '../apis/cmr.api.js'; import type { UmmVar } from '../apis/types/cmr/umm-var.js'; declare class CmrVariableService { /** * given a name and a list of variables, return the variable with the matching name */ getVariableByName(name: string, variables?: UmmResponse | null): UmmResult | undefined; /** * given a variable, return the variable's display label * ex: Shortname = LongName (Units) */ getVariableDisplayLabel(variable: UmmResult): string; } declare const cmrVariableService: CmrVariableService; export default cmrVariableService;