import { type VariantProps } from "class-variance-authority"; import * as React from "react"; import { Pressable } from "react-native"; declare const buttonVariants: (props?: ({ variant?: "default" | "link" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "default" | "sm" | "lg" | "icon" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare const buttonTextVariants: (props?: ({ variant?: "default" | "link" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "default" | "sm" | "lg" | "icon" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type ButtonProps = React.ComponentProps & VariantProps; declare function Button({ ref, className, variant, size, ...props }: ButtonProps): React.JSX.Element; export { Button, buttonTextVariants, buttonVariants }; export type { ButtonProps }; //# sourceMappingURL=button.d.ts.map