import type { AccountConfigSetting, LighterAccountConfig, ProviderAction } from '@lifi/perps-types'; /** * Project the union of Lighter setup + options descriptors against the typed * `LighterAccountConfig`. Produces exactly one `AccountConfigSetting` per * descriptor, in `setup`-then-`options` order (preserving the order in which * the backend emits them). * * @param config Typed account state for the Lighter account. * @param setup `Provider.setup` array as emitted by `/providers`. * @param options `Provider.options` array as emitted by `/providers`. * @public */ export declare function projectLighterConfigSettings(config: LighterAccountConfig, setup: ProviderAction[], options: ProviderAction[]): AccountConfigSetting[]; //# sourceMappingURL=accountConfig.d.ts.map