/// import { ButtonProps } from "antd/lib/button"; import { Result } from "glow-core/es/actions/use-submit"; export * from "./promise-button"; export * from "./promise-popconfirm"; declare type ActionProps = { url: string; input: Input; onResult?: (result: Result) => void; onSuccess?: (output: Output) => void; onErrorResult?: (error: any) => void; }; declare type ActionButtonProps = Omit & ActionProps; export declare function ActionButton({ onResult, onSuccess, onErrorResult, ...props }: ActionButtonProps): JSX.Element; //# sourceMappingURL=action-button.d.ts.map