@makigas/genshi-svelte
Version:
The Svelte Components required to integrate Genshi into a Svelte application
14 lines (13 loc) • 460 B
TypeScript
import { type Validation } from '../common.js';
import type { Snippet } from 'svelte';
import type { HTMLFieldsetAttributes } from 'svelte/elements';
interface Props extends HTMLFieldsetAttributes {
children: Snippet;
label: string;
helper?: string;
validation?: Validation;
inline?: boolean;
}
declare const RadioGroup: import("svelte").Component<Props, {}, "">;
type RadioGroup = ReturnType<typeof RadioGroup>;
export default RadioGroup;