/** Responsible for printing ascii art files */ declare function getAsciiArt(artName: any): string; declare function printAsciiArt(artName: any): void; export declare const Ascii: { get: typeof getAsciiArt; print: typeof printAsciiArt; }; export {};