import { default as React } from 'react';
export interface WhatsAppButtonProps {
    phoneNumber: string;
    color?: string;
    position?: 'bottom-right' | 'bottom-left';
    marginBottom?: number;
    marginSide?: number;
    size?: number;
    message?: string;
}
declare const WhatsAppButton: React.FC<WhatsAppButtonProps>;
export default WhatsAppButton;
