import type { AccountHolderOption } from '../core/types/AccountHolder.types';
interface UseAccountHolder {
    accountHolder: AccountHolderOption | undefined;
    setAccountHolder: (accountHolder: AccountHolderOption | undefined) => void;
}
export declare const useAccountHolder: (legalEntityId: string) => UseAccountHolder;
export {};
