import { Radius } from './radius'; /** * Hook that combines the global radius context with component-specific radius prop * to determine the effective radius class to use. * * @param componentRadius - The radius prop passed to the component * @returns The CSS class name for the effective radius */ export declare const useEffectiveRadius: (componentRadius?: Radius) => string;