import { Transaction } from '@stellar/stellar-sdk';
import { AccountHandler, AccountHandlerPayload } from '../../../../stellar-plus/account/account-handler/types';
import { TransactionXdr } from '../../../../stellar-plus/types';
export type DefaultAccountHandler = AccountHandler & {
    sign(tx: Transaction): TransactionXdr;
    getSecretKey(): string;
};
export type DefaultAccountHandlerPayload = AccountHandlerPayload & {
    secretKey?: string;
};
