export interface IHaravanCollection {
    collection_id: number;
    created_at: string;
    featured: boolean;
    id: number;
    position: number;
    product_id: number;
    sort_value: string;
    updated_at: string;
}
export declare function getHaravanCollections(param: {
    accessToken: string;
    query?: string;
    delay?: number;
}): Promise<IHaravanCollection[]>;
