import { Variables, type Plugin } from '../../../index';
export interface PageData {
}
export type PageProps = {
    context: Variables['pagesContext'];
    data: PageData;
    params: Record<string, string>;
    searchParams: Record<string, string>;
    path: string;
};
export type LayoutProps = PageProps & {
    children: React.ReactNode;
};
export declare const setup: Plugin['setup'];
