5 lines
228 B
TypeScript
5 lines
228 B
TypeScript
import type { RadioGroupRootProps } from "../types.js";
|
|
declare const RadioGroup: import("svelte").Component<RadioGroupRootProps, {}, "value" | "ref">;
|
|
type RadioGroup = ReturnType<typeof RadioGroup>;
|
|
export default RadioGroup;
|