export interface IsByteLengthOptions { min?: number; max: number; } export default function isByteLength(str: any, options: IsByteLengthOptions): boolean;