import React from 'react'; export interface RadioCardProps { label: React.ReactNode; checked: boolean; onChange: () => void; rightLabel?: React.ReactNode; children?: React.ReactNode; disabled?: boolean; } export declare function RadioCard(props: RadioCardProps): import("react/jsx-runtime").JSX.Element;