import { type DeclarativeElementDefinition } from 'element-vir';
import { type EmptyObject } from 'type-fest';
export declare function renderElement<const Definition extends DeclarativeElementDefinition>(elementDefinition: Definition, ...args: Definition['InputsType'] extends EmptyObject ? [] : [Definition['InputsType']]): Promise<Definition["InstanceType"]>;
