import type { AssetInfo, Memo, MemoNotSupported, SendTransactionIntent, StakingOperation, StakingTransactionIntent, TxData, TxDataNotSupported } from '../api/index'; export * from './capabilities'; type SendPartialBase = { type: string; } & Partial, 'intentType' | 'type'>>; export declare function createSendTransactionIntentMockData(partial: SendPartialBase & { memo?: MemoType; data?: TxDataType; }): SendTransactionIntent; type StakingPartialBase = { type: string; mode: StakingOperation; } & Partial, 'intentType' | 'type' | 'mode'>>; export declare function createStakingTransactionIntentMockData(partial: StakingPartialBase & { memo?: MemoType; data?: TxDataType; }): StakingTransactionIntent; export declare function createAssetInfoMockData(partial: { type: string; } & Partial>): AssetInfo; //# sourceMappingURL=helpers.d.ts.map