/** * AccountInfo response types and codec */ export interface AccountInfoResponse { readonly lamports: bigint; readonly owner: string; readonly data: Uint8Array | unknown; readonly executable: boolean; readonly rentEpoch: bigint; } export interface AccountInfoRpcResponse { readonly context: { readonly slot: number; }; readonly value: AccountInfoResponse | null; } export declare const AccountInfoCodec: import("../../codec").BaseCodec; export declare const AccountInfoRpcResponseCodec: import("../../codec").BaseCodec; export declare function createAccountInfoResponse(data: unknown): AccountInfoRpcResponse;