import { type CSSProperties } from 'react'; import type { Side, Align } from '../../../types'; export interface SelectContentContextValue { /** Ready-to-use styles for the arrow element, computed by useFloating. */ arrowStyles: CSSProperties; /** Actual computed placement side of the content. */ side: Side; /** Actual computed placement alignment of the content. */ align: Align; } export declare const SelectContentContext: import("react").Context; /** * Hook to access select content context. * Must be used within SelectContent. */ export declare const useSelectContentContext: () => SelectContentContextValue;