import { SVGProps } from "react"; interface SVGRProps { title?: string; titleId?: string; } declare const SvgTerraced: ({ title, titleId, ...props }: SVGProps & SVGRProps) => JSX.Element; export default SvgTerraced;