import { RootLayoutOptions, View } from '@nativescript/core'; /** * Utility for the RootLayout view. * * @param component * @param options */ export declare function useRootLayout(component: any, options?: { props?: any; on?: Record any>; rootLayoutOption?: RootLayoutOptions; onClose?: () => void; closeTimerMillis?: number; }): { show: () => Promise; close: () => void; isShow: import("nativescript-vue").Ref; view: View; };