import { CommonPoolState } from '../types'; export declare const Akron: { type: "Akron"; apiName: "AKRON"; }; export type AkronConfig = { type: typeof Akron.type; apiName: typeof Akron.apiName; hookAddress: string; }; export type AkronHookState = { weights: ReadonlyArray; minimumSwapFeePercentage: bigint; }; export declare function isAkronPoolState(poolState: any): poolState is CommonPoolState;