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