import { ColorValue } from 'react-native'; /** * The props of VoiceImageAnimation */ export interface VoiceImageAnimationProps { /** Whether to play, default is false */ playing?: boolean; /** Color (for tintColor), default is '#07C160' (WeChat green) */ color?: ColorValue; /** Duration of each frame (milliseconds), default is 300 */ frameDuration?: number; /** Image size, default is 30 */ size?: number; /** Direction of the wave, default is 'right' */ direction?: 'right' | 'left'; } /** * Voice playback animation component based on PNG images */ export declare function VoiceImageAnimation({ playing, color, frameDuration, size, direction, }: VoiceImageAnimationProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=VoiceImageAnimation.d.ts.map