import { type BasedAdditionalProps, type SelectBoxOption } from '../SelectBox.types'; /** * Type guard to check if an option is a selectable option (has value and may have disabled) * * @param option - The option to check * * @returns True if the option has a value (is not a group label) */ export declare function isSelectableOption(option: SelectBoxOption): option is Extract, { value?: T; }>; /** * Returns true if the option is selectable and disabled. * * @param option - Option to check */ export declare function isOptionDisabled(option: SelectBoxOption): boolean;