import React from "react";
import { RouterProps } from "./router/Router";
import { LogoType, NavigationOverrides } from "./types";
export interface AdminProps extends RouterProps {
    logo?: LogoType;
    logoSymbol?: LogoType;
    loginLogoHeight?: number | string;
    title?: string;
    subtitle?: string;
    version?: string;
    navigation: NavigationOverrides;
    basename?: string;
    /**
     * An optional base path to strip from the frontend navigation, usually this
     * is something along the lines of `/api/v1/` and if only a schema is provided
     * it will be automatically set to the dirname of that schema path.
     */
    basepath?: string;
}
export declare const Admin: React.FC<AdminProps>;
export default Admin;
