import { TypeActionProps } from './action'; export type TypeFirstSlideProps = TypeActionProps & { ATTRIBUTE_ACTIVE_SLIDE: string; ATTRIBUTE_DATA_SLIDE: string; currentSlide: HTMLElement | null; primarySlideLinks?: HTMLElement | null; primarySlidesSecondaryLinks?: HTMLElement | null; primarySlideContent?: HTMLElement | null; setCurrentSlide: (arg: { element: HTMLElement; withTransition?: boolean; }) => void; eventSlideRight: () => void; }; export type TypeFirstSlide = TypeFirstSlideProps & { isContextMenu: boolean; }; export declare const createCompositeNavigationSliderFirst: { CreateElement: (props: TypeFirstSlide) => HTMLDivElement; Styles: string; Elements: { secondaryContainer: string; }; }; //# sourceMappingURL=slide-first.d.ts.map