import { Address, ProgramDerivedAddress } from "@solana/kit"; //#region src/generated/pdas/claimFeeOperator.d.ts type ClaimFeeOperatorSeeds = { /** The operator address */ operator: Address; }; /** * A claim fee operator account that authorizes an address to claim protocol fees. * Operators can collect fees on behalf of the protocol. */ declare function findClaimFeeOperatorPda(seeds: ClaimFeeOperatorSeeds, config?: { programAddress?: Address | undefined; }): Promise; //#endregion export { ClaimFeeOperatorSeeds, findClaimFeeOperatorPda }; //# sourceMappingURL=claimFeeOperator.d.ts.map