import React from "react"; import { type ButtonRootProps, type ButtonSize, type ButtonVariant } from "heroui-native"; import { type NIcon } from "../helpers/icons.js"; export type NButtonVariant = ButtonVariant; export type NButtonSize = ButtonSize; export type NButtonProps = ButtonRootProps & { children: React.ReactNode; icon?: NIcon; iconSize?: number; }; export declare const NButton: React.NamedExoticComponent; //# sourceMappingURL=NButton.d.ts.map