import { FC, RefObject, HTMLAttributes } from "react";
export interface SelectNativeInnerProps extends HTMLAttributes {
}
export interface SelectNativeProps extends HTMLAttributes {
options: OptionNative[];
innerProps?: SelectNativeInnerProps;
innerRef?: RefObject;
}
export interface OptionNative {
disabled?: boolean;
selected?: boolean;
label: string;
value: string;
}
export declare const SelectNative: FC;