import type { Blueprint } from '@seamapi/blueprint'; export type ApiBlueprint = Blueprint; export interface GetApiBlueprintOptions { /** * Build from the OpenAPI document the configured endpoint is currently * running, instead of the published npm types. */ useRemoteSchema?: boolean; /** Force an update of the cached Seam API schema. */ update?: boolean; } export declare const getApiBlueprint: ({ useRemoteSchema, update, }?: GetApiBlueprintOptions) => Promise;