import './index.less'; export interface IFlowTracingAttrProps { /** * 流程编码 */ processId?: string; /** * 业务类型编码 */ bizCode?: string; /** * 业务表单id */ bizKey?: string; open?: boolean; height?: string; back?: () => void; /** * @description 关闭抽屉 */ afterBack?: (data: any) => void; } export declare const FlowTrace: ({ ...props }: { [x: string]: any; }) => import("react/jsx-runtime").JSX.Element; /** * 送审追踪 */ export declare const flowTrace: (params: any) => Promise;