export declare const SLOTS: { PRIMARY_SLIDE_LINKS: string; PRIMARY_SLIDE_SECONDARY_LINKS: string; PRIMARY_SLIDE_CONTENT: string; CHILDREN_SLIDES: string; }; type TypeSliderRequirements = { element: HTMLElement; PRIMARY_SLIDE_CONTENT: string; PRIMARY_SLIDE_LINKS: string; PRIMARY_SLIDE_SECONDARY_LINKS: string; CHILDREN_SLIDES: string; excludeSlots?: string[]; }; type TypeNavDrawerRequirements = TypeSliderRequirements & { displayType?: string; }; export declare const MakeSliderData: ({ element, PRIMARY_SLIDE_CONTENT, PRIMARY_SLIDE_LINKS, PRIMARY_SLIDE_SECONDARY_LINKS, CHILDREN_SLIDES, excludeSlots, }: TypeSliderRequirements) => { primarySlideLinks: HTMLElement | undefined; primarySlidesSecondaryLinks: HTMLElement | undefined; childrenSlides: HTMLElement | undefined; primarySlideContent: HTMLSlotElement | null; childrenSlideContent: HTMLSlotElement[]; }; export declare const MakeNavDrawer: (props: TypeNavDrawerRequirements) => { element: HTMLDivElement; events: { eventOpen: () => void; }; } | null; export declare const MakeNavSlider: (props: TypeSliderRequirements) => { container: HTMLDivElement; events: { resize: () => void; }; }; export {}; //# sourceMappingURL=common.d.ts.map