import type { ResolutionData, ResolutionUser } from "./types"; interface ResolutionContentProps { ticketId?: string; showFollowUp?: boolean; user?: ResolutionUser; context?: Record; captureMetadata?: boolean; onSubmit?: (data: ResolutionData) => Promise | void; apiEndpoint?: string; submitLabel?: string; onSuccess: () => void; onError: (error: string) => void; } export declare function ResolutionContent({ ticketId, showFollowUp, user, context, captureMetadata, onSubmit, apiEndpoint, submitLabel, onSuccess, onError, }: ResolutionContentProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=resolution-content.d.ts.map