import type { PiralPlugin } from 'piral-core';
import type { PiletMithrilApi } from './types';
/**
 * Available configuration options for the Mithril.js plugin.
 */
export interface MithrilConfig {
}
/**
 * Creates new Pilet API extensions for integrating Mithril.js.
 */
export declare function createMithrilApi(config?: MithrilConfig): PiralPlugin<PiletMithrilApi>;
