declare type TextEncodeFunction = (input: string) => Uint8Array; declare type TextDecodeFunction = (input: Uint8Array) => string; declare type NextTickFunction = (fn: Function) => void; export interface Options { textEncode?: TextEncodeFunction; textDecode?: TextDecodeFunction; nextTick?: NextTickFunction; } export interface InternalHolder { textEncode: TextEncodeFunction; textDecode: TextDecodeFunction; nextTick?: NextTickFunction; } export {}; //# sourceMappingURL=types.d.ts.map