import { Environment } from "../utils/types.js";
import "../utils/index.js";
import { FooterColumnData } from "./footer.types.js";
//#region src/footer/helpers.d.ts
/** Loads templates for Footer links and enriches them with urls from LinksContext. */
declare function useFooterLinks(env: Environment): {
  columns: FooterColumnData[] | undefined;
  linkedIn: string | undefined;
};
//#endregion
export { useFooterLinks };

//# sourceMappingURL=helpers.d.ts.map