import { BRC } from '../types/RuntimeCxt';
import { EntityDict } from '../oak-app-domain';
export type AspectDict = {
getAccountPayRefunds: (params: {
accountId: string;
}, context: BRC) => Promise<EntityDict['refund']['CreateSingle']['data'][]>;
};