import React from 'react'; export interface AnimatedViolinShapeProps { path: string; fill: string; fillOpacity?: number; stroke?: string; strokeWidth?: number; index: number; totalViolins?: number; disabled?: boolean; onFocus?: () => void; onBlur?: () => void; onPress?: () => void; } export declare const AnimatedViolinShape: React.FC;