import type { Brand } from '../types/database.js'; /** * Get all brands with place count (실제 ttbkk-web useBrandList 기반) * @returns Array of brands sorted by place count */ export declare function getBrandList(): Promise; /** * Get specific brand details with hashtags * @param brandId - Brand ID * @returns Brand details with hashtags */ export declare function getBrandDetails(brandId: string): Promise; /** * Search brands by name * @param query - Search query for brand name * @param limit - Maximum number of results * @returns Array of matching brands */ export declare function searchBrands(query: string, limit?: number): Promise; //# sourceMappingURL=brand-list.d.ts.map