import { Service } from "../serviceSDK"; /** * Service class for managing store-related operations. */ export declare class StoreService extends Service { /** * Constructs a new StoreService instance. * @param endpoint - The endpoint URL for the service. * @param orgId - The organization ID. * @param storeId - The store ID. */ constructor(endpoint: string, orgId: string, storeId: string); setToken(token: string): void; /** * Creates a store channel. * * @param storeChannelData - The data for creating the store channel. * @returns A promise that resolves to the created store channel response. * @throws If an error occurs while creating the store channel. */ createStoreChannel(storeChannelData: any): Promise; /** * Gets available store channels for an employee. * * @param empId - The employee ID. * @returns A promise that resolves to the available store channels. * @throws If an error occurs while fetching the store channels. */ getAvailableStoreChannels(orgId: string, empId: string): Promise; }