import type { AfppParseOptions } from './core.js';
export interface PdfMetadata {
    title?: string;
    author?: string;
    subject?: string;
    creator?: string;
    producer?: string;
    creationDate?: Date;
    modificationDate?: Date;
    pageCount: number;
    isEncrypted: boolean;
}
export declare function getPdfMetadata(input: Buffer | string | Uint8Array | URL, options?: Pick<AfppParseOptions, 'password'>): Promise<PdfMetadata>;
