import { default as React, InputHTMLAttributes } from 'react';
type OptionType = {
label: string;
value: string;
};
export type DropdownProps = Omit, "size"> & {
options: OptionType[];
placeholder?: string;
show?: boolean;
onChange?: (event: React.ChangeEvent) => void;
size?: "large" | "small" | "medium";
kind?: "default" | "fluid";
BorderLastNone?: boolean;
error?: boolean;
warning?: boolean;
disabled?: boolean;
readOnly?: boolean;
text?: string;
messege?: string;
};
export declare const Dropdown: (props: DropdownProps) => import("react/jsx-runtime").JSX.Element;
export {};