import type { Attachment } from '../../forms/FormDataHelpers.js'; import type { ThreekitAuthProps } from '../../ThreekitAuthProps.js'; import { Route } from '../Route.js'; export type CreatePdfProps = { data: object; template: Attachment; }; export declare class Pdf extends Route { constructor(auth: ThreekitAuthProps); healthcheck(): Promise>; create(createProps: CreatePdfProps): Promise>; }