@open-formulieren/formio-builder
Version:
An opinionated Formio webform builder for Open Forms
9 lines (8 loc) • 518 B
TypeScript
import type { ReactTabsFunctionComponent, TabListProps, TabPanelProps, TabProps, TabsProps } from 'react-tabs';
declare const CustomTab: ReactTabsFunctionComponent<TabProps & {
hasErrors?: boolean;
}>;
declare const CustomTabList: ReactTabsFunctionComponent<TabListProps>;
declare const CustomTabs: ReactTabsFunctionComponent<TabsProps>;
declare const CustomTabPanel: ReactTabsFunctionComponent<TabPanelProps>;
export { CustomTab as Tab, CustomTabList as TabList, CustomTabPanel as TabPanel, CustomTabs as Tabs };