import { toMatchPdfSnapshot, type Options } from './toMatchPdfSnapshot';
declare global {
    namespace jest {
        interface Matchers<R> {
            toMatchPdfSnapshot(options?: Options): Promise<R>;
        }
    }
}
export { toMatchPdfSnapshot };
