import { PublicKey, TransactionInstruction } from '../../types'; export declare const SystemProgram: { readonly programId: PublicKey; readonly transfer: (params: { fromPubkey: PublicKey; toPubkey: PublicKey; lamports: number | bigint; }) => TransactionInstruction; readonly createAccount: (params: { fromPubkey: PublicKey; newAccountPubkey: PublicKey; lamports: number | bigint; space: number; programId: PublicKey; }) => TransactionInstruction; };