import { RadioGroupItemProps as RadixGroupItemProps } from "@radix-ui/react-radio-group"; import React from "react"; export type IconType = "soft" | "hard" | "floating" | "none" | "original" | "center" | "template" | "custom" | "left" | "right" | "bottom"; export type PresetGroupIconProps = Readonly<{ value: IconType; } & Pick>; export declare const PresetGroupIcon: ({ value, checked }: PresetGroupIconProps) => React.JSX.Element; //# sourceMappingURL=PresetGroupIcon.d.ts.map