export type BridgeStatus = 'pending' | 'ok' | 'down';
export interface ChildBridgeMetadata {
    status: BridgeStatus;
    paired?: boolean | null;
    setupUri?: string | null;
    username: string;
    port?: number;
    pin: string;
    name: string;
    plugin: string;
    identifier: string;
    pid?: number;
    manuallyStopped: boolean;
}
