/** * Claim-code CLI commands. * * photon claim # create a claim for the current dir * photon claim --scope /path # create for a specific dir * photon claim --ttl 1h # custom expiry (default 24h) * photon claim --label "phone" # human-readable note * photon claim list # show active claims * photon claim revoke # remove a claim * * See `src/daemon/claims.ts` for the store and the feature write-up. */ import type { Command } from 'commander'; import { type ClaimRecord } from '../../daemon/claims.js'; export declare function registerClaimCommands(program: Command): void; export type { ClaimRecord }; //# sourceMappingURL=claim.d.ts.map