///
import { StyleProp, TextStyle, ViewStyle } from "react-native";
import { ButtonVariant } from "../types";
type ButtonProps = {
title: string;
onPress: () => void;
icon?: JSX.Element;
iconRight?: JSX.Element;
variant?: ButtonVariant;
style?: StyleProp;
textStyle?: TextStyle;
disabled?: boolean;
slim?: boolean;
loading?: boolean;
textBold?: boolean;
};
declare const _default: import("react").FC>;
export default _default;