export declare const MakeTemplate: ({ styles }: { styles: string; }) => HTMLTemplateElement; export declare const MakeSpan: ({ text }: { text: string; }) => HTMLSpanElement; export declare const MakeSlot: ({ type }: { type: string; }) => HTMLSlotElement; export declare const CreateLinkWithSpan: ({ url, title, label, }: { url: string; title: string; label?: string | undefined; }) => HTMLAnchorElement; export declare const SlotDefaultStyling: ({ element, slotRef, }: { element: HTMLElement; slotRef: string; }) => HTMLElement | null; export declare const SlotOberserver: ({ element, shadowDom, slots, CreateShadowDom, }: { element: HTMLElement; shadowDom: ShadowRoot; slots: { [key: string]: string; }; CreateShadowDom: ({ element }: { element: any; }) => HTMLElement; }) => void; export declare const CheckForAnimationLinkSpan: ({ element, }: { element: HTMLElement | HTMLAnchorElement; }) => void; export declare const CheckForImageAlt: ({ element, slotRef, }: { element: HTMLElement; slotRef: string; }) => boolean; export declare const CheckForCtaStyle: ({ element, styleClass, }: { element: HTMLElement | HTMLAnchorElement; styleClass: string; }) => void; //# sourceMappingURL=ui.d.ts.map