import { FC, PropsWithChildren } from "react"; interface CopyrightProps extends PropsWithChildren { short?: boolean; } /** * The copyright component. If short flag is used, will not render GIS-OPS part (e.g. when using * it in the drawer). */ declare const Copyright: FC; export default Copyright;