export type Dependency = {
    name: string;
    url: string;
    macUrl?: string;
    installed: boolean;
};
export declare const dependencies: Dependency[];
