interface ICoreSyptb { _id?: string; syptb_title: string; syptb_tabs: ITabs[]; syptb_tab_code: string; syptb_page_id_sypg: string; syptb_isactive?: boolean; } export interface ITabs { syptb_path: string; syptb_label: string; syptb_isactive: boolean; } export { ICoreSyptb };