declare module 'to-ico' {
  /**
   * Convert PNG buffers to ICO format.
   * @param buffers - Array of PNG image buffers (typically 16x16, 32x32, 48x48)
   * @returns Buffer containing the ICO file data
   */
  function toIco(buffers: Buffer[]): Promise<Buffer>;
  export default toIco;
}