import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import BN from "bn.js";
export interface WithdrawFromTopupArgs {
    amount: BN;
}
export interface WithdrawFromTopupAccounts {
    adminAuthority: PublicKey;
    topupVault: PublicKey;
    system: PublicKey;
}
export declare const layout: any;
export declare function withdrawFromTopup(args: WithdrawFromTopupArgs, accounts: WithdrawFromTopupAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=withdrawFromTopup.d.ts.map