@tialro2/rnbokit
Version:
<img width="493" alt="Screenshot 2023-11-24 at 15 43 41" src="static/sreenshot.jpeg">
14 lines (13 loc) • 371 B
TypeScript
export default RadioGroup;
type RadioGroup = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<Props>): void;
};
declare const RadioGroup: import("svelte").Component<{
labelledby?: string;
children?: import("svelte").Snippet;
}, {}, "">;
type Props = {
labelledby?: string;
children?: import("svelte").Snippet;
};