import type { Blueprint } from '@seamapi/blueprint'; export interface GetBlueprintOptions { update?: boolean; cacheDirectory?: string; } /** * Build a blueprint from the latest published Seam API types on npm, * using the on-disk cache unless it is stale or an update is forced. */ export declare const getBlueprint: (options?: GetBlueprintOptions) => Promise;