import React from "react";
import { ApiOperation } from "../api";
export interface PageContextProps {
    changeTab: (tab: string) => void;
    contrib: ApiOperation[];
}
export declare const usePage: () => PageContextProps;
export interface PageProps {
    defaultTab?: string;
    tabSearchParam?: boolean | string;
}
export declare const Page: React.FC<React.PropsWithChildren<PageProps>>;
