import type { ResolvedConfig } from "../config"; type Size = { width: string; height: string; }; type AuctionConfig = { seller: string; decisionLogicURL: string; requestedSize?: Size; interestGroupBuyers: string[]; resolveToConfig?: boolean; auctionSignals?: any; }; type SiteResponse = {}; declare function Site(config: ResolvedConfig): Promise; declare function SiteFromCache(config: ResolvedConfig): SiteResponse | null; export { Site, SiteFromCache }; export default Site; export type { SiteResponse, Size, AuctionConfig };