import { ViewTemplate } from '@ni/fast-element'; import { type FoundationElementTemplate, type SelectOptions } from '@ni/fast-foundation'; import type { Select } from '.'; import { ListOptionGroup } from '../list-option-group'; import { ListOption } from '../list-option'; export declare const isListOption: (el: Element | undefined | null) => el is ListOption; export declare const isListOptionGroup: (n: Element | undefined | null) => n is ListOptionGroup; export declare const template: FoundationElementTemplate, SelectOptions>;