import RpcMethodType from '../../pluggableElementTypes/RpcMethodType';
export default class CoreGetRefNames extends RpcMethodType {
name: string;
execute(args: {
sessionId: string;
stopToken?: string;
adapterConfig: Record<string, unknown>;
}, rpcDriver: string): Promise<string[]>;
}