import * as lo from '@solana/buffer-layout';
import { PublicKey } from "@solana/web3.js";
export interface LiquidityAccountLayout {
    sighash: Uint8Array;
    mint: PublicKey;
    bump: number;
    share: bigint;
    ptMinted: bigint;
    amountDeposited: bigint;
}
export declare const LIQUIDITY_ACCOUNT_LAYOUT: lo.Structure<LiquidityAccountLayout>;
