import { SnackbarProps } from '../common/SnackBar'; /** * Component & its Props */ export type Props = { isOnDashboard: boolean; showSnackbar: boolean; snackbar: SnackbarProps; }; declare const AppBasePage: (props: Props) => import("react/jsx-runtime").JSX.Element; export default AppBasePage;