@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
20 lines (19 loc) • 635 B
TypeScript
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: {
(props: KendoCaptchaProps & KendoCaptchaState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: ("loading" | "invalid" | "disabled" | "valid")[];
options: {};
className: string;
defaultOptions: {
imgPath: string;
};
};
export default Captcha;