import { Router } from "express";
/**
 * Page Router options
 */
export interface IMsTeamsPageRouterOptions {
    /**
     * root location of files
     */
    root: string;
    /**
     * All components, used to detect presence of `PreventIframe` files
     */
    components: any;
}
/**
 * Express router for pages to be hosted in Microsoft Teams.
 * @param options Page Router options
 */
export declare const MsTeamsPageRouter: (options: IMsTeamsPageRouterOptions) => Router;
