import type { Brand } from "../../records/Brand"; declare type Input = { hostname: string; query: Record; cookies: Record; headers: Record; }; declare const getBrand: ({ hostname, query, cookies, headers }: Input) => Brand; export default getBrand;