///
import { ExecOptions } from 'child_process';
export declare type FillData = Record;
declare const pdfFill: {
fill: ({ data, pdfPath, tempPath, }: {
data: FillData;
pdfPath: string;
tempPath?: string | undefined;
}) => Promise;
generateXfdf: ({ data, pdfPath, }: {
data: FillData;
pdfPath: string;
}) => Promise;
execPdftk(cmd: string, customExecOptions?: ExecOptions | undefined): Promise;
};
export default pdfFill;