/** * SignaturesForAddress response types and codec */ export interface SignatureForAddressInfo { readonly signature: string; readonly slot: number; readonly err: unknown | null; readonly memo: string | null; readonly blockTime: number | null; readonly confirmationStatus?: string; } export type SignaturesForAddressResponse = SignatureForAddressInfo[]; export declare const SignatureForAddressInfoCodec: import("../../codec").BaseCodec; export declare function createSignaturesForAddressResponse(data: unknown): SignaturesForAddressResponse;