import React from 'react'; export interface MyTaskPageProps { initiallySelectedFilter?: 'owned' | 'all'; } export declare const ListTasksPage: (props: MyTaskPageProps) => React.JSX.Element;