import { PluginBase, Chain } from '@goat-sdk/core';

declare class RugCheckPlugin extends PluginBase {
    constructor();
    supportsChain(chain: Chain): boolean;
}
/**
 * Factory function to create a new RugCheck plugin instance
 */
declare function rugcheck(): RugCheckPlugin;

export { RugCheckPlugin, rugcheck };
