/// <reference types="react" />
import type { IconOptions } from "./Icon";
export default function FAB({ icon, onPress, }: {
    icon?: IconOptions;
    onPress: () => void;
}): JSX.Element;
