import { AccountInfoResponse } from '../account/account-info-response'; export interface ProgramNotification { readonly context: { readonly slot: number; }; readonly value: { readonly account: AccountInfoResponse; readonly pubkey: string; }; } export declare function createProgramNotification(data: unknown): ProgramNotification;