@mx-cartographer/experiences 3.1.1-alpha.j7 → 3.1.1-alpha.j9

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,6 @@ export declare class AccountStore {
10
10
  institutions: Institution[];
11
11
  members: Member[];
12
12
  uiStore: UiStore;
13
- isInitialized: boolean;
14
13
  constructor(globalStore: GlobalStore);
15
14
  initialize: (endpoint: string, token: string) => void;
16
15
  get cashAccounts(): Account[];
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ import { default as React } from 'react';
2
2
  import { SxProps } from '@mui/material/styles';
3
3
  import { Account } from '../../types';
4
4
  import { AccountFilterOptionsCopy } from './AccountFilterOptions';
@@ -17,5 +17,5 @@ export interface AccountFilterProps {
17
17
  sx?: SxProps;
18
18
  variant?: 'outlined' | 'text';
19
19
  }
20
- declare const AccountFilter: FC<AccountFilterProps>;
21
- export default AccountFilter;
20
+ declare const _default: React.FunctionComponent<AccountFilterProps>;
21
+ export default _default;