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