import { ReactNode } from 'react'; import { AthenaUiPrimitives } from './types.js'; export interface AthenaUiPrimitivesProviderProps { children: ReactNode; value: AthenaUiPrimitives; } export declare function AthenaUiPrimitivesProvider({ children, value }: AthenaUiPrimitivesProviderProps): import("react").JSX.Element; export declare function useAthenaUiPrimitives(): AthenaUiPrimitives; export declare function useOptionalAthenaUiPrimitives(): AthenaUiPrimitives | undefined;