import { SelectOption } from "@stryke/types/form"; //#region src/is-select-option.d.ts /** * 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 */ declare const isSelectOption: (value: unknown) => value is SelectOption; //#endregion export { isSelectOption }; //# sourceMappingURL=is-select-option.d.mts.map