import type { Config } from '../../index.js'; export type AccountSetting = { id: string; channelCode?: string; type: string; details: Record; }; export type GetAccountSetting = (settingId: string, config?: Config) => Promise;