import { SpecsState, Spec } from './types'; declare type State = { runtime: { specs: SpecsState; }; }; export declare const getSpec: (state: State, name: string) => Spec | undefined; export {};