export declare class Registry<T> {
    private core;
    private custom;
    constructor(coreEntries: [string, T][]);
    register(name: string, item: T): void;
    get(name: string): T | undefined;
    getAll(): T[];
}
