import * as RadioGroup from "@radix-ui/react-radio-group"; export type OptionSelectionListItemProps = Omit & Readonly<{ title: string; /** * Description rendered below the title. Accepts any React node so consumers * can pass styled fragments (e.g. a `` instance with inline spans). */ description?: React.ReactNode; imageSrc: string; altLabel?: string; /** * Shows the DS damier pattern behind the thumbnail and switches the image * to `object-contain` so transparent edges are visualised. Use for options * that imply letterboxing (e.g. a "Fit" resize mode). */ showCheckerboard?: boolean; }> & React.RefAttributes; export declare function OptionSelectionListItem({ title, description, imageSrc, altLabel, showCheckerboard, className, ref, ...rest }: OptionSelectionListItemProps): import("react").JSX.Element; export declare namespace OptionSelectionListItem { var displayName: string; } //# sourceMappingURL=OptionSelectionListItem.d.ts.map