/** * Resolves a radius input into a valid CSS radius value. * @param input - The radius input (`sm`, `md`, `lg`, `full`, `none`, or CSS length). * @returns The resolved CSS radius value. */ export declare function resolveRadius(input: string): string;