export type Plug<T> = (() => T) & {
    isFrogePlug: true;
    isReady: boolean;
};
export declare function plug<T>(key: string): Plug<T>;
