cookie-test-app
Version:
testing
16 lines (15 loc) • 419 B
TypeScript
import React from 'react';
import './RadioButton.scss';
interface RadioButtonProps {
changed: (e: string) => void;
value: string;
isSelected?: boolean;
label: string;
name: string;
}
interface RadioButtonGroupProps {
legend: string;
}
export declare const RadioButton: React.FC<RadioButtonProps>;
export declare const RadioButtonGroup: React.FC<RadioButtonGroupProps>;
export {};