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