export type Wildcard = "*" | "~" | "_" | "```" | string; export interface IRule { wildcard: Wildcard; openTag: string; closeTag: string; } export declare const whatsappRules: IRule[]; export declare function format(text: string, rules?: IRule[]): string;