export declare const SET_BUSINESS = "[Business] Set Business"; export declare const FETCH_PRODUCT_COLLECTION = "[Business] fetch product collection"; export declare const SET_PRODUCT_COLLECTION = "[Business] set product collection"; export declare const setBusiness: (payload: any) => { type: string; payload: any; }; export declare const setProductCollection: (payload: any) => { type: string; payload: any; }; export declare const fetchProductCollection: (businessAuthId: string, collectionId: string, productsLimit?: number) => any;