import type { Blueprint } from '@sanity/blueprints-parser';
import type { DeployedResource, FunctionResource, Stack } from './types.js';
export declare function findFunctionInBlueprint(blueprint: Blueprint, name: string): FunctionResource;
export declare function findFunctionInStack(stack: Stack, name: string): DeployedResource;
