///
///
import { GetStructureSchema } from '../marshmallow';
export declare const LIQUIDITY_STATE_LAYOUT_V4: import("../marshmallow").Structure;
export type LiquidityStateLayoutV4 = typeof LIQUIDITY_STATE_LAYOUT_V4;
export type LiquidityStateV4 = GetStructureSchema;
export declare const LIQUIDITY_STATE_LAYOUT_V5: import("../marshmallow").Structure;
export type LiquidityStateLayoutV5 = typeof LIQUIDITY_STATE_LAYOUT_V5;
export type LiquidityStateV5 = GetStructureSchema;
export type LiquidityState = LiquidityStateV4 | LiquidityStateV5;
export type LiquidityStateLayout = LiquidityStateLayoutV4 | LiquidityStateLayoutV5;
export declare const LIQUIDITY_VERSION_TO_STATE_LAYOUT: {
[version: number]: LiquidityStateLayout;
};