import { PiralRenderOptions } from './types'; /** * Sets up a new Piral instance and renders it using the provided options. * @param options The options to use when setting up the Piral instance. * @deprecated Use `createInstance` with `render` directly. * @example ```ts import { renderInstance } from 'piral'; renderInstance(); ``` */ export declare function renderInstance(options?: PiralRenderOptions): import("piral-core").PiralInstance;