import React from "react"; import { type StyleProp, type ViewStyle } from "react-native"; type Props = { /** * Background color of component */ color?: string; /** * Background color of ripple effect (Android) */ background?: string; /** * Number for the elevation effect (iOS and Android) */ elevation?: number; /** * Mini size: Only used to create visual continuity with other screen elements */ small?: boolean; /** * Function for the onPress event */ onPress?(): void; /** * Custom styles for the component */ containerStyle?: StyleProp; }; export declare const FloatButton: React.FC; export default FloatButton; //# sourceMappingURL=index.d.ts.map