/** * Generate an abstract art image from a git hash with custom configuration * @param {string} gitHash - The git hash to use as a seed * @param {object} [config={}] - Configuration options * @returns {Buffer} PNG buffer of the generated image */ export function generateImageFromHash(gitHash: string, config?: {}): Buffer; /** * Save the generated image to a file */ export function saveImageToFile(imageBuffer: string, outputDir: string, gitHash: string | any[], label: string | undefined, width: any, height: any): any; //# sourceMappingURL=types.d.ts.map