import { Address, ProgramDerivedAddress } from "@solana/kit"; //#region src/generated/pdas/config.d.ts type ConfigSeeds = { /** The config index */ index: number | bigint; }; /** * Configuration account that stores global protocol settings. * Each config is indexed by a unique u64 index. */ declare function findConfigPda(seeds: ConfigSeeds, config?: { programAddress?: Address | undefined; }): Promise; //#endregion export { ConfigSeeds, findConfigPda }; //# sourceMappingURL=config.d.ts.map