import { PropsWithChildren, ReactElement } from 'react'; import { UseScrollableOptions, PropsWithStyle, SfScrollableButtonsPlacement } from '../../index.ts'; export interface SfScrollableProps extends UseScrollableOptions, PropsWithChildren, PropsWithStyle { wrapperClassName?: string; slotPreviousButton?: ReactElement; slotNextButton?: ReactElement; prevDisabled?: boolean; nextDisabled?: boolean; buttonPrevAriaLabel?: string; buttonNextAriaLabel?: string; buttonsPlacement?: `${SfScrollableButtonsPlacement}`; }