import { SelectOption } from "../utility-types/form"; /** * Check if the provided value's type is SelectOption * * @param value - The value to type check * @returns An indicator specifying if the object provided is of type SelectOption */ export declare const isSelectOption: (value: unknown) => value is SelectOption;