import { IBreadCrumbShape } from '../../../../ui/components/breadcrumb/interfaces.js';
import { ReactNode } from 'react';
export interface IPageWrapper {
    title: string;
    children: ReactNode;
    breadCrumb?: IBreadCrumbShape[];
}
