export interface LinuxBSODOptions { qr?: string; message?: string; title?: string; subtitle?: string; bgColor?: string; textColor?: string; fontUrl?: string; fontSize?: number; } export function renderLinuxBSOD( width: number | null | undefined, height: number | null | undefined, options?: LinuxBSODOptions ): Promise; export function mountLinuxBSOD( container: HTMLElement, options?: LinuxBSODOptions ): () => void;