import { componentInterface } from '../factory'; import { optionsInterface } from '../options'; import type { ThumbmarkError } from '../functions'; /** * Logs thumbmark data to remote logging endpoint (only once per session) * You can disable this by setting options.logging to false. * @internal */ export declare function logThumbmarkData(thisHash: string, thumbmarkData: componentInterface, options: optionsInterface, experimentalData?: componentInterface, errors?: ThumbmarkError[]): Promise;