import { ReactNode } from 'react'; export type DashboardTabProps = { title: string; children: ReactNode; }; export declare function DashboardTab(props: DashboardTabProps): null;