UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

17 lines (16 loc) 627 B
import { KendoButtonOptions, KendoButtonState } from '../button'; export type KendoPromptSendButtonOptions = KendoButtonOptions; export type KendoPromptSendButtonState = KendoButtonState; export type KendoPromptSendButtonProps = KendoButtonOptions & KendoPromptSendButtonState & { generating?: boolean; }; export declare const PromptSendButton: { (props: KendoPromptSendButtonProps & React.HTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element; states: any; options: any; className: string; defaultOptions: { generating: boolean; }; }; export default PromptSendButton;