import { type Address, type Hex } from 'viem'; import type { Call } from '../../../calls/types.js'; import type { ChainDigest, Session } from './types.js'; export declare function encodeEnableSessionCall(input: { readonly account: Address; readonly session: Session; readonly userSignature: Hex; readonly hashesAndChainIds: readonly ChainDigest[]; readonly sessionToEnableIndex: number; readonly environment: 'production' | 'development'; }): Call; export declare function encodeDisableSessionCall(input: { readonly account: Address; readonly session: Session; readonly expires: bigint; readonly nonce: bigint; readonly environment: 'production' | 'development'; }): Call; //# sourceMappingURL=calls.d.ts.map