import { type EnumLike } from "discord.js"; export default class StringExtension { length: string["length"]; slice: string["slice"]; localeCompare: string["localeCompare"]; constructor(); /** @DJSProtofy */ equals(other: string, ignoreCase?: boolean): boolean; /** @DJSProtofy */ limit(length: number, enumLike?: EnumLike): string; }