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;
