import { PiralRenderOptions } from './types';
/**
 * Sets up a new Piral instance and renders it using the provided options.
 * Can be used as simple as calling the function directly without any
 * arguments.
 * @param appName The name of the application.
 * @param options The options to use when setting up the Piral instance.
 * @example
```ts
import { renderInstance } from 'piral-native';
renderInstance();
```
 */
export declare function renderInstance(appName: string, options?: PiralRenderOptions): import("piral-core").PiralInstance;
