import type { ReactiveControllerHost } from 'lit'; import type { Variable } from '../components/browse-variables/browse-variables.types.js'; export type HostWithMaybeProperties = ReactiveControllerHost & { variableEntryId?: string; variableEntryIds?: string[]; collection?: string; variable?: string; startDate?: string; endDate?: string; catalogVariable?: Variable; catalogVariables?: Variable[]; }; export declare function getVariableEntryId(host: HostWithMaybeProperties): string | undefined; export declare function getVariableEntryIds(host: HostWithMaybeProperties): string[];