export declare type SubscribeToFn = () => () => void; export declare type DateTime = string; export declare type PaginationCursor = string; export interface Signature { publicKey: string; signedDigest: string; } export declare type Payload = Record; export interface PayloadWithTimestamp extends Payload { timestamp: number; } export declare type InputPayload = Record; export declare enum Blockchain { NEO = "neo", ETH = "eth", BTC = "btc" } export declare enum Period { DAY = "DAY", MONTH = "MONTH", SEMESTER = "SEMESTER", WEEK = "WEEK" }