import type { FetchNavigationTreesParams } from '@scayle/storefront-nuxt'; type GetNavigationParameters = FetchNavigationTreesParams['params']; /** * Access the main header navigation tree. * @param params Options to use when fetching the navigation tree through SAPI. * @param treeName The name of the navigation tree to fetch. Defaults to 'Header'. * @returns The navigation tree for the main header. */ export declare function useHeaderNavigation(params?: GetNavigationParameters, treeName?: string): import("@scayle/storefront-nuxt/composables").ExtendedAsyncData, null>; /** * Access the main footer navigation tree. * @param params Options to use when fetching the navigation tree through SAPI. * @param treeName The name of the navigation tree to fetch. Defaults to 'Footer'. * @returns The navigation tree for the main footer. */ export declare function useFooterNavigation(params?: GetNavigationParameters, treeName?: string): import("@scayle/storefront-nuxt/composables").ExtendedAsyncData, null>; /** * Access the simple header navigation tree. * @param params Options to use when fetching the navigation tree through SAPI. * @param treeName The name of the navigation tree to fetch. Defaults to 'Simplified Header'. * @returns The navigation tree for the simple header. */ export declare function useSimpleHeaderNavigation(params?: GetNavigationParameters, treeName?: string): import("@scayle/storefront-nuxt/composables").ExtendedAsyncData, null>; /** * Access the simple footer navigation tree. * @param params Options to use when fetching the navigation tree through SAPI. * @param treeName The name of the navigation tree to fetch. Defaults to 'Simplified Footer'. * @returns The navigation tree for the simple footer. */ export declare function useSimpleFooterNavigation(params?: GetNavigationParameters, treeName?: string): import("@scayle/storefront-nuxt/composables").ExtendedAsyncData, null>; export { useNavigations } from './useNavigations.js'; export { useNavigationsByReferenceKey } from './useNavigationsByReferenceKey.js';