/** * split every `format`/`fmt` result in a method's params into plain text + its * `*_entities` sibling, wherever the schema says formatted text can live — * including nested spots (`reply_parameters.quote`, poll options, media groups, * inline results, checklists, …). driven by the code-generated * {@link formatFields} map, so a new Bot API release covers new methods by * regenerating types, not by hand-listing them. * * the api client applies this to every outgoing call, which is what lets * `bot.api.sendMessage({ text: format`…` })` — or any other method — accept a * formatted value directly. copy-on-write: params are never mutated, and an * explicitly passed entities param always wins. */ export declare function applyFormatFields(method: string, params: Record | undefined): Record | undefined; //# sourceMappingURL=format-hook.d.ts.map