/**
 * An async wait function that will wait for the specified number of milliseconds
 */
export declare function wait(ms: number): Promise<unknown>;
/**
 * Combine the plugin info with the MAC Address of the panel to provide a good seed for a UUID
 * @param id The MAC Address of the panel
 * @returns The name to use to generate a UUID
 */
export declare function panelUUID(id: string): string;
export declare function checkNetwork(): Promise<boolean>;
export declare function checkNetworkResponse(): Promise<NodeJS.ErrnoException | null>;
