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;
