import { FC } from 'react';
export interface UnderConstructionProps {
    isShowChildren?: boolean;
    label: string;
    setShowChildrenUnderConstraction: (x: any) => void;
}
export declare const UnderConstruction: FC<UnderConstructionProps>;
