/// import type { CB_STYLE_PROP_SLIDEBANNER_SPEC_PREVBTNSTYLE_TYPE, INSET_POSTIION, OUTSET_POSTIION } from './types'; import type { CB_SLIDEBANNER } from '../../../../../../../DynamicLayout/sections/CustomSection/types'; import type { CB_SLIDEBANNER_PROPERTIES_TYPE, IndexForIntersection } from '../../../../../../../DynamicLayout/sections/CustomSection/util/types'; type Props = CB_SLIDEBANNER_PROPERTIES_TYPE & IndexForIntersection & { compositions: CB_SLIDEBANNER['compositions']; }; type ComponentType = 'PREV' | 'NEXT' | 'PAGINATION' | 'PROGRESSBAR'; export type SlideBannerElementsProps = { type: ComponentType; position: OUTSET_POSTIION | INSET_POSTIION; designType: CB_STYLE_PROP_SLIDEBANNER_SPEC_PREVBTNSTYLE_TYPE; size: 'LARGE' | 'MEDIUM' | 'SMALL'; }; declare function SlideBanner(props: Props): JSX.Element; export default SlideBanner;