declare function toBytes(this: string, encoding?: string): Uint8Array; export default toBytes; declare global { interface String { toBytes: typeof toBytes; } }