import type { TargetLocation } from "../types.js"; interface DefaultTargetOptions { includeHome?: boolean; } export declare function getDefaultTargets(cwd: string, home: string, options?: DefaultTargetOptions): TargetLocation[]; export {};