import { type RadioButtonCardResponsiveSlot } from './RadioButtonCard.types'; /** * A component that transforms radio buttons into card-style selectable elements. * This component turns on/off the label depends on the prop: label, detail and layout. * * Also extends the props of `` element. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio */ export declare const RadioButtonCard: import("react").ForwardRefExoticComponent<{ layout?: import("../../styled-system/recipes").RadioButtonCardSlotRecipeVariant["layout"]; label: string; renderDetailsSlot?: RadioButtonCardResponsiveSlot | import("./RadioButtonCard.types").RadioButtonCardRenderDetailsSlot; disableResponsive?: import("../../styled-system/recipes").RadioButtonCardSlotRecipeVariant["disableResponsive"]; } & Omit & import("react").RefAttributes>;