import React from 'react'; /** * @title: 按钮操作区 * @description: 仅包含签名 * @Author: hongbing.wang * @Date: 2024-08-20 12:33 */ export declare const ReceiptAction: ({ api, onChange, }: { api: any; onChange: (status: boolean) => void; }) => React.JSX.Element; /** * @title: 按钮操作区 * @description: 不包含签名 * @Author: hongbing.wang * @Date: 2024-08-20 12:32 */ declare const Action: ({ index, onCancel, disabled, }: { index: number; onCancel: () => void; disabled: boolean; }) => React.JSX.Element | null; export default Action;