export declare const SUGGESTION_CLASSNAME = "k-suggestion";
declare const states: ("active" | "focus" | "hover")[];
declare const options: {
    themeColor: ("base" | "primary" | "secondary" | "tertiary" | undefined)[];
};
export type KendoSuggestionOptions = {
    themeColor?: (typeof options.themeColor)[number] | null;
};
export type KendoSuggestionProps = KendoSuggestionOptions & {
    text?: string;
};
export type KendoSuggestionState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const Suggestion: {
    (props: KendoSuggestionProps & KendoSuggestionState & React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
    states: ("active" | "focus" | "hover")[];
    options: {
        themeColor: ("base" | "primary" | "secondary" | "tertiary" | undefined)[];
    };
    className: string;
    item: {
        text: string;
    };
};
export default Suggestion;
