export interface Config { ssid: string; password: string; encryption: 'WPA' | 'WEP' | 'None'; hiddenSSID: boolean; outputFormat: OutputFormat; } export interface OutputFormat { type: 'image/png' | 'utf8' | 'svg' | 'terminal'; } export declare function generateWifiQRCode(input: Config): Promise;