import * as _yamada_ui_core from '@yamada-ui/core';
import { HTMLUIProps } from '@yamada-ui/core';

interface RadioCardLabelProps extends HTMLUIProps {
    /**
     * If `true`, the icon will be displayed.
     *
     * @default true
     */
    withIcon?: boolean;
    /**
     * The props for the label content.
     */
    contentProps?: HTMLUIProps<"span">;
    /**
     * The props for the icon.
     */
    iconProps?: HTMLUIProps;
}
declare const RadioCardLabel: _yamada_ui_core.Component<"div", RadioCardLabelProps>;

export { RadioCardLabel, type RadioCardLabelProps };
