import React from "react"; import { ViewProps } from "react-native"; type ActionButtonsRowProps = { shouldShowRetryButton: boolean; shouldShowCopyTextButton: boolean; handleRetryButtonPress: () => void; handleCopyTextButtonPress: () => void; } & ViewProps; export declare const ActionButtonsRow: ({ shouldShowRetryButton, shouldShowCopyTextButton, handleRetryButtonPress, handleCopyTextButtonPress, ...viewProps }: ActionButtonsRowProps) => React.JSX.Element; export {};