import { TypeFirstSlideProps } from './slide-first'; import { TypeActionProps } from './action'; export type TypeSlideProps = TypeActionProps & TypeFirstSlideProps & { ATTRIBUTE_DATA_SLIDE: string; ATTRIBUTE_ACTIVE_SLIDE: string; childrenSlides?: HTMLElement | null; childrenSlideContent?: HTMLSlotElement[]; primarySlideLinks?: HTMLElement | null; primarySlidesSecondaryLinks?: HTMLElement | null; eventSlideRight: () => void; }; type TypeDrawerChildSlide = TypeSlideProps & { slider: HTMLElement; }; export declare const createCompositeNavigationSlides: { CreateElement: (props: TypeDrawerChildSlide) => void; Styles: string; Elements: { container: string; wrapper: string; headline: string; }; }; export {}; //# sourceMappingURL=slides.d.ts.map