import { KendoButtonOptions, KendoButtonState } from '../button';
import { KendoFloatingActionButtonOptions, KendoFloatingActionButtonProps } from '../fab';
export type KendoPromptStopFloatingActionButtonOptions = KendoButtonOptions;
export type KendoPromptStopFloatingActionButtonState = KendoButtonState;
export type KendoPromptStopFloatingActionButtonProps = KendoFloatingActionButtonOptions & KendoFloatingActionButtonProps & KendoPromptStopFloatingActionButtonState & {
    generating?: boolean;
};
export declare const PromptStopFloatingActionButton: {
    (props: KendoPromptStopFloatingActionButtonProps & React.HTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
    states: any;
    options: any;
    className: string;
    defaultOptions: {
        generating: boolean;
    };
};
export default PromptStopFloatingActionButton;
