import { IAccount } from '@cee-eng/hydrajs/@types/models/account'; import React from 'react'; interface IProps { selectedAccounts?: IAccount[]; excludeAccounts?: IAccount[]; bookmarkedAccounts?: IAccount[]; canBookmarkAccount?: boolean; suggestBookmarkAccounts?: boolean; onSelect?: (accounts: IAccount[]) => any; multiple?: boolean; isInValid?: boolean; restrictedOnSubscriptionAbuse?: boolean; label?: string; name?: string; id?: string; title?: string; className?: string; placeholder?: string; emptyListLabel?: string; paginate?: boolean; useCache?: boolean; disabled?: boolean; maxResults?: number; delay?: number; showSelectionCountBadge?: boolean; } declare function AccountSelectorInternal(props: IProps): React.JSX.Element; declare namespace AccountSelectorInternal { var defaultProps: Partial; } export { AccountSelectorInternal }; //# sourceMappingURL=AccountSelectorInternal.d.ts.map