declare module '@wordpress/i18n' { export function __(text: string, domain?: string): string; export function _n(single: string, plural: string, count: number, domain?: string): string; export function sprintf(format: string, ...args: unknown[]): string; }