import React from 'react'; export interface RadioPillsProps { options: Array<{ value: string; label: string; icon?: React.ReactNode; }>; value?: string; onChange?: (value: string) => void; name: string; disabled?: boolean; className?: string; animate?: boolean; } export declare const RadioPills: React.FC;