import type { ImageSourcePropType, ImageURISource } from "react-native"; import type { PDFCoverItem } from "./ReactNativePdfCover.types"; export type Source = { uri?: ImageSourcePropType | undefined; headers?: { [key: string]: string; }; cache?: boolean; cacheFileName?: string; expiration?: number; method?: string; }; type getPDFCoverFunction = { source: ImageURISource | undefined; password?: string | undefined; page?: number | undefined; size?: { width: number; height: number; } | undefined; scale?: number | undefined; autoPrefix?: boolean | undefined; }; export declare function getPDFCover(params: getPDFCoverFunction): Promise; export declare function getPdfCoverList(params: Omit): Promise; export {}; //# sourceMappingURL=index.d.ts.map