interface File {
    filename: string;
    contents: string;
    [key: string]: string;
}
interface Blueprint {
    [key: string]: File[];
}
declare const blueprint: Blueprint;
export default blueprint;
