import * as lo from '@solana/buffer-layout';
import { PublicKey } from "@solana/web3.js";
export interface StakingAccount {
    sighash: Uint8Array;
    controller: PublicKey;
    bump: number;
    share: BigInt;
    amountStaked: BigInt;
}
export declare const STAKING_ACCOUNT_LAYOUT: lo.Structure<StakingAccount>;
