import React from 'react';
import type { ViewStyle } from 'react-native';
interface FloatingButtonProps {
    onPress?: () => void;
    color?: string;
    icon?: React.ReactNode;
    position?: {
        bottom?: number;
        right?: number;
    };
    style?: ViewStyle;
}
declare const FloatingButton: React.FC<FloatingButtonProps>;
export default FloatingButton;
//# sourceMappingURL=FloatingButton.d.ts.map