@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
13 lines (12 loc) • 490 B
TypeScript
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;