import type { AssetTransactionRepo } from '../../../repo/assetTransaction';
import type { TaskRepo } from '../../../repo/task';
type ITaskAndTransactionOperation<T> = (repos: {
    task: TaskRepo;
    assetTransaction: AssetTransactionRepo;
}) => Promise<T>;
/**
 * 取引タスク出力
 */
declare function exportTasksById(params: {
    id: string;
}): ITaskAndTransactionOperation<{
    id: string;
}[]>;
export { exportTasksById };
