import React from 'react'; interface StyleProps { size?: number; backgroundColor?: string; activeBackgroundColor?: string; pulseColor?: string; shadowProps?: { color?: string; offset?: { width: number; height: number; }; opacity?: number; radius?: number; }; iconSize?: number; iconColor?: string; } export interface RecordButtonProps { isRecording: boolean; isProcessing: boolean; onPress: () => void; styles?: StyleProps; } export declare const RecordButton: ({ isRecording, isProcessing, onPress, styles: customStyles, }: RecordButtonProps) => React.JSX.Element; export {}; //# sourceMappingURL=RecordButton.d.ts.map