import type { ComponentPropsWithRef } from "react"; export interface CardOptionProps { classNamePrefix?: string; } declare const CardOption: { ({ children, className, classNamePrefix, ref, ...rest }: CardOptionProps & ComponentPropsWithRef<"label">): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; export default CardOption;