@payfit/unity-components
Version:
9 lines (8 loc) • 458 B
TypeScript
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 {};