import { KendoComponent } from '../_types/component';
export declare const CAPTCHA_CLASSNAME = "k-captcha";
declare const states: ("loading" | "invalid" | "disabled" | "valid")[];
export type KendoCaptchaProps = {
    value?: string;
    imgPath?: string;
};
export type KendoCaptchaState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const Captcha: KendoComponent<KendoCaptchaProps & KendoCaptchaState & React.HTMLAttributes<HTMLDivElement>>;
export default Captcha;
