import { Blueprint } from './blueprint';
/**
  * Generate a mock
  */
export declare function register<T>(name: string, blueprint: Blueprint<T>): void;
export declare function retrieve<T>(name: string): Blueprint<T> | undefined;
