@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
9 lines (8 loc) • 402 B
TypeScript
import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import { type SelectProps } from '../../functional-components/inputs/NativeSelect';
import { type SelectStates } from '../../schema';
export type SelectStateWrapperProps = Partial<SelectProps> & {
state: SelectStates;
};
declare const SelectStateWrapper: FC<SelectStateWrapperProps>;
export default SelectStateWrapper;