UNPKG

505 BTypeScriptView Raw
1import { type HTMLChakraProps, type RecipeProps, type UnstyledProp } from "../../styled-system";
2export interface RadiomarkProps extends HTMLChakraProps<"span", RecipeProps<"radiomark">>, UnstyledProp {
3 /**
4 * Whether the checkmark is checked
5 */
6 checked?: boolean;
7 /**
8 * Whether the checkmark is disabled
9 */
10 disabled?: boolean;
11}
12export declare const Radiomark: import("react").ForwardRefExoticComponent<RadiomarkProps & import("react").RefAttributes<HTMLSpanElement>>;