import { type Identity } from '@byted-apaas/cli-core-sdk'; import { type SourceChanges } from '../devOps/scmHelpers/types'; interface EnsureFunctionApiIDOptions { cwd: string; namespace: string; identity: Identity; workspaceRoot: string; } declare const ensureFunctionApiID: (options: EnsureFunctionApiIDOptions) => Promise; export default ensureFunctionApiID;