import type { VNode, PropType } from "vue"; export declare const nPageLayoutProps: () => { readonly contextSlots: { readonly type: PropType; readonly default: () => {}; }; }; export declare type NPageLayoutProps = ReturnType; export interface NPageLayoutEmits { } declare type ContextSlots = { default: () => Array; header: () => Array; content: () => Array; }; export {};