declare global {
    namespace TsED {
        interface StaticsOptions {
            root: string;
            [key: string]: any;
        }
    }
}
export interface PlatformStaticsOptions extends TsED.StaticsOptions {
    root: string;
    [key: string]: any;
}
export declare type PathOrStaticsOptions = string | PlatformStaticsOptions;
export interface PlatformStaticsSettings {
    [endpoint: string]: PathOrStaticsOptions | PathOrStaticsOptions[];
}
