import { VNode } from 'vue'; import { InertiaApp, InertiaAppProps } from '@inertiajs/inertia-vue3'; /** * * @param app * @param props * @returns */ export declare function h(app: InertiaApp, props: InertiaAppProps, children?: any): VNode; /** * * @param app * @param props * @returns */ export declare function h_spa(initialComponent: Object, pageProps: Object, children?: any): VNode; /** * * @param componentProps * @param pageProps * @returns */ export declare function transform(componentProps: Object, pageProps: Object): Object;