import { Account } from '../types';
export declare const getAccountsWithCustomAccounts: <T extends Account>({ accounts, selectedAccount, inputValue, }: {
    accounts: T[];
    selectedAccount: T | undefined;
    inputValue: string;
}) => T[];
