declare namespace _exports {
    export { PdfSeparateOptions };
}
declare const _exports: Record<keyof PdfSeparateOptions, import("../index").OptionDetails>;
export = _exports;
type PdfSeparateOptions = {
    /**
     * Specifies the first page to extract.
     * This defaults to page 1.
     */
    firstPageToExtract?: number | undefined;
    /**
     * Specifies the last page to extract.
     * This defaults to the last page of the PDF file.
     */
    lastPageToExtract?: number | undefined;
    /**
     * Print copyright and version info.
     */
    printVersionInfo?: boolean | undefined;
};
