import React from 'react'; export interface AppTabModel { label: string; jsx: any; icon?: any; isDisabled?: boolean; redirectTo?: string; } export interface SectionWithSaveProps { disableNativeSave?: boolean; tabs: AppTabModel[]; fbDocument: string; localData: any; title: string; desc?: string; icon?: any; disableSave?: boolean; checkBeforeSave?: any; bucket?: string; children?: any; noCheckFields?: string[]; classNames?: { scrollContainer?: string; }; rightSideTop?: any; rightSideBottom?: any; onSave?: any; setLocalData?: (prev: any) => void; noSeparateTabs?: boolean; onTabIndexChange?: (newTab: number) => void; onServerData?: (data: any) => void; } declare const SectionWithSave: (props: SectionWithSaveProps) => React.JSX.Element; export default SectionWithSave;