interface AttrProps {
    tag: string;
    title: string;
}
interface UserTxnListPage {
    attr: AttrProps;
    id: string;
    target: string;
}
declare const MyTaskTxnList: (props: UserTxnListPage) => import("react/jsx-runtime").JSX.Element;
export default MyTaskTxnList;
