import accountsApi from './accounts'; import checkpointsApi from './checkpoints'; import tokensApi from './tokens'; import transactionsApi from './transactions'; import chainApi from './chain'; import stateApi from './state'; export * from './accounts/types'; export * from './tokens/types'; export * from './transactions/types'; export * from './checkpoints/types'; export * from './chain/types'; export * from './state/types'; /** * API client for 1money network * @param options Configuration options * @param options.network Network to use (testnet, mainnet, local) * @param options.timeout Request timeout in milliseconds * @param options.chainId Custom chain ID (overrides the default for the selected network) */ export declare function api(options?: { network?: 'testnet' | 'mainnet' | 'local'; timeout?: number; }): { accounts: typeof accountsApi; checkpoints: typeof checkpointsApi; tokens: typeof tokensApi; transactions: typeof transactionsApi; chain: typeof chainApi; state: typeof stateApi; }; export default api;