/** * Creates a `` tag in the `` tag * @param href - the CSS * @param attributes - optional attributes to add to the tag */ declare const createLinkInHead: (href: string, attributes?: Record) => Promise; export default createLinkInHead;