import type { LayoutScope } from './types';
export type ResolveCommandScopeOptions = {
    baseEnv: Record<string, unknown> & {
        FOREST_SERVER_URL: string;
    };
    flags: {
        env?: string;
        projectId?: number;
        team?: string;
    };
};
/** Resolve the full layout scope for a command run (ids + names). */
export declare function resolveCommandScope(options: ResolveCommandScopeOptions): Promise<LayoutScope>;
//# sourceMappingURL=resolve-command-scope.d.ts.map