export interface BlockFund { accountKey?: string; amount: number; creationDate?: string; externalReferenceId: string; lastModifiedDate?: string; notes?: string; seizedAmount?: number; state?: BlockFundStateEnum; } export declare const BlockFundStateEnum: { readonly Pending: "PENDING"; readonly Seized: "SEIZED"; readonly Removed: "REMOVED"; readonly PartiallySeized: "PARTIALLY_SEIZED"; }; export type BlockFundStateEnum = (typeof BlockFundStateEnum)[keyof typeof BlockFundStateEnum];