import { InterfaceTypes } from '@plugnet/types/types';
import { RpcParam } from '../types';
interface RpcParamOptions {
    isOptional?: boolean;
}
export default function createParam(name: string, type: InterfaceTypes, { isOptional }?: RpcParamOptions): RpcParam;
export {};
