import utf8 from './utf8'; import hex from './hex'; import base64 from './base64'; declare function strToBytes( str: string, encoding?: 'utf8' | 'hex' | 'base64' | string ): number[]; export default strToBytes;