import type { CreateVerify, Verify } from "./types.js"; export declare const createVerify: CreateVerify; /** * Verify the URL with the apple-app-site-association file. * This function is a wrapper of the `swcutil` command. * So you need to run on macOS and root permission is required. * @param json apple-app-site-association file content or path * @param path URL to verify * @returns Map of appID and match/block */ export declare const verify: Verify;