import { Type } from '@angular/core';
export interface Tech {
    name: string;
    icon: Type<any>;
    url: string;
}
export declare const techs: Tech[];
