import { type FingerprintResult } from 'fs-fingerprint'; export type { FingerprintInputHash } from 'fs-fingerprint'; export type FingerprintOptions = { extraSources: string[]; ignorePaths: string[]; env: string[]; }; /** * Calculates the fingerprint of the native parts project of the project. */ export declare function nativeFingerprint(projectRoot: string, options: FingerprintOptions & { platform: 'ios' | 'android' | 'harmony'; }): Promise; //# sourceMappingURL=index.d.ts.map