import { StylesConfig } from "react-select";
import "react-loading-skeleton/dist/skeleton.css";
export type SelectType = {
    size: "small" | "large" | "medium";
    kind: "default" | "fluid" | "little";
    message?: string;
    label?: string;
    placeholder?: string;
    disabled?: boolean;
    error?: boolean;
    warning?: boolean;
    readonly?: boolean;
    loading?: boolean;
    options?: IoptionsProps[];
    styles?: StylesConfig;
    name?: string;
    id?: string;
    noRadius?: boolean;
    isMulti?: boolean;
    value?: string;
    onChange?: (event: any) => void;
    clearInput?: boolean;
    noBorder?: boolean;
    zIndex?: number;
};
export type IoptionsProps = {
    label: string;
    value: string;
};
export declare const InputSelect: (props: SelectType) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map