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 & { state: SelectStates; }; declare const SelectStateWrapper: FC; export default SelectStateWrapper;