import { EmptyEmit } from "./type.js"; import { ButtonProps, LegacyButtonType } from "../button/Button.js"; import "../button/index.js"; import * as vue296 from "vue"; import { SlotsType } from "vue"; //#region src/_util/ActionButton.d.ts interface ActionButtonProps { type?: LegacyButtonType; actionFn?: (...args: any[]) => any | PromiseLike; close?: (...args: any[]) => void; autoFocus?: boolean; prefixCls: string; buttonProps?: ButtonProps; emitEvent?: boolean; quitOnNullishReturnValue?: boolean; children?: any; isSilent?: () => boolean; } interface ActionButtonSlots { default?: () => any; } declare const ActionButton: vue296.DefineSetupFnComponent, ActionButtonProps, vue296.PublicProps>; //#endregion export { ActionButtonProps, ActionButtonSlots, ActionButton as default };