/// <reference types="react" />
import { PressableProps } from "react-native";
import { IconOptions } from "./Icon";
export default function ActionButton({ text, icon, onPress, type, disabled, align, }: {
    text: string;
    icon: IconOptions;
    onPress: PressableProps["onPress"];
    type?: "default" | "primary";
    disabled?: boolean;
    align?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | "auto";
}): JSX.Element;
