import { FC } from 'react';
export interface UnderConstruction {
    setUnderConstruction: (x: any) => void;
    setUnderConstructionDetails: (x: any) => void;
    setModuleInfo: (x: any) => void;
    setModuleVersion: (x: any) => void;
}
export declare const UnderConstruction: FC<UnderConstruction>;
