import { type AnyOption, type GroupOption, type Option } from "./Autocomplete.types"; export declare function isOptionSelected(selectedOption: Option | undefined, option: Option): boolean; /** * Helper function to determine if the option is a group. This is used to * determine if the option contains a list of options for rendering Section * Labels in the Autocomplete component. */ export declare function isOptionGroup(option: T): option is Extract;