'use client';

import ExportHtmlButton from './ExportHtmlButton';

type ExportPdfButtonProps = {
  linkId: string;
  period: string;
  linkData?: {
    shortUrl: string;
    longUrl: string;
    title: string | null;
  };
  getExportNode?: () => HTMLElement | null;
  disabled?: boolean;
  disabledReason?: string;
};

export default function ExportPdfButton(props: ExportPdfButtonProps) {
  return <ExportHtmlButton {...props} />;
}
