export type SmsCharset = "GSM 03.38" | "Unicode"; export interface SmsPartsInfo { smsCount: number; charsLeft: number; charSet: SmsCharset; parts: string[]; totalChars: number; } export declare function getSmsPartsInfo(content?: string): SmsPartsInfo;