/// <reference types="react" />
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';

interface HeaderProps {
    title?: string;
    subtitle?: string;
    headerLabel?: Record<string, string>;
}

declare const TimeSaverPlugin: _backstage_core_plugin_api.BackstagePlugin<{
    root: _backstage_core_plugin_api.RouteRef<undefined>;
}, {}, {}>;
declare const TimeSaverPage: (props: HeaderProps) => JSX.Element;

export { TimeSaverPage, TimeSaverPlugin };
