import { FetchState } from '@zeniai/client-epic-state'; export declare const D: { readonly cardWidthPx: 378; readonly cardHeightPx: 337; readonly cardGapPx: number; }; export interface QBOSetupSectionProps { isAdmin: boolean; isNetsuiteNotifyMeQueued: boolean; isQBOPopupOpen: boolean; isValid: boolean; companyName?: string; hasError?: boolean; saveConnectionState?: FetchState; showReconnectButton?: boolean; handleOnConnectClick: () => void; onNetsuiteNotifyMeClick: () => void; updateQBOPopupState: (isQBOPopupOpen: boolean) => void; onReconnectClick?: () => void; } export declare const QBOSetupSection: ({ isAdmin, isNetsuiteNotifyMeQueued, hasError, isValid, saveConnectionState, companyName, showReconnectButton, updateQBOPopupState, handleOnConnectClick, onNetsuiteNotifyMeClick, onReconnectClick, }: QBOSetupSectionProps) => import("react/jsx-runtime").JSX.Element;