import { PropsWithChildren } from 'react';
interface SelectOptionContextValue {
    isDisabled: boolean | undefined;
}
export declare const SelectOptionContext: import('react').Context<SelectOptionContextValue>;
export declare function SelectOptionProvider({ children, isDisabled, }: PropsWithChildren<SelectOptionContextValue>): import("react/jsx-runtime").JSX.Element;
export declare function useSelectOptionContext(): SelectOptionContextValue;
export {};
