import { FC } from 'react'; export interface PluginLeftTabsType { onSave: () => void; goBack?: () => void; saveLoading: boolean; setSaveLoading: (v: boolean) => void; onManualSave: () => void; } interface PluginTabIconProps { active: boolean; icon: any; } /** * tabēš„icon * @param props * @returns */ export declare const PluginTabIcon: FC; declare const _default: (props: any) => JSX.Element; export default _default;