@modul/mbui 0.0.38-beta-select-e18f0e7d → 0.0.38-beta-select-df293040

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { ISelectOption } from '../SelectDrawer';
3
+ declare const SelectSecondaryOption: FC<ISelectOption>;
4
+ export { SelectSecondaryOption };
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { ISelectValue } from '../SelectDrawer';
3
+ declare const SelectPrimaryAccountValue: FC<ISelectValue>;
4
+ export { SelectPrimaryAccountValue };
@@ -4,3 +4,5 @@ export { SelectAsync } from './SelectAsync';
4
4
  export { SelectBase } from './SelectBase';
5
5
  export { Select } from './Select';
6
6
  export { SelectDrawer, type ISelectValue, type ISelectOption } from './SelectDrawer';
7
+ export { SelectSecondaryOption } from './components/SelectBankAccountOption';
8
+ export { SelectPrimaryAccountValue } from './components/SelectPrimaryAccountValue';