import { ZeniDate, ZeniUrl } from '@zeniai/client-epic-state'; import { FormSectionProps } from '../../../formElements/common/formSection'; export interface Props extends FormSectionProps { isJELoading: boolean; jePostingDate: ZeniDate; qboURL?: ZeniUrl; } export interface LinkJETransactionSectionFormData { jePostingDate: string; qboURL?: ZeniUrl; } type FormDataKeys = keyof LinkJETransactionSectionFormData; declare const uniqueName: (sectionId: string, key: FormDataKeys) => `${string}.jePostingDate` | `${string}.qboURL`; export type FormDataKeyUniqueNames = ReturnType; export declare function LinkJETransactionSection({ sectionId, jePostingDate, qboURL, isJELoading, }: Readonly): import("react/jsx-runtime").JSX.Element; export {};