import { IkasBrandList } from "../../../storefront-models/src"; /** * Initializes a brand list with default values, merging in any provided partial data. * * @ai-category Initialization, BrandList * * @param data - Partial brand list data to override the defaults * @returns A fully initialized IkasBrandList object * * @example * ```typescript * import { initBrandList } from "@ikas/bp-storefront"; * * const brandList = initBrandList({ limit: 20, sort: "A_Z" }); * ``` */ export declare function initBrandList(data: Partial): IkasBrandList;