import React, { SVGProps } from 'react'; import { AnimationTiming } from '../util/types'; interface TrapezoidProps { className?: string; x?: number; y?: number; upperWidth?: number; lowerWidth?: number; height?: number; isUpdateAnimationActive?: boolean; animationBegin?: number; animationDuration?: number; animationEasing?: AnimationTiming; } export declare type Props = SVGProps & TrapezoidProps; export declare const Trapezoid: React.FC; export {};