import React from "react"; import { type NIcon } from "../helpers/icons.js"; export interface NActionItemProps { name: string; description?: string; icon?: NIcon; showArrow?: boolean; feedback?: boolean; isDisabled?: boolean; className?: string; titleClassName?: string; descriptionClassName?: string; onPress?: () => void; onLongPress?: () => void; } export declare const NActionItem: React.NamedExoticComponent; //# sourceMappingURL=NActionItem.d.ts.map