@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
11 lines (10 loc) • 522 B
TypeScript
import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import { type RadioProps } from '../../functional-components/inputs/Radio';
import { type InputProps } from '../../functional-components/inputs/Input';
import { type InputRadioStates } from '../../schema';
export type RadioStateWrapperProps = Omit<RadioProps, 'inputProps'> & {
state: InputRadioStates;
inputProps?: Partial<InputProps>;
};
declare const RadioStateWrapper: FC<RadioStateWrapperProps>;
export default RadioStateWrapper;