import { MouseEventHandler } from 'react'; export interface CarouselButtonProps { /** * If true then the button will be visible, otherwise hidden. */ visible: boolean; /** * Which direction the button should point. */ direction: 'right' | 'left'; /** * If true, it means the user doesn't want to show the agent's avatar * so we need to move the buttons accordingly. */ noAvatar: boolean; /** * A click handler for the button. */ onClick?: MouseEventHandler; } /** * A button used to scroll to the previous or next Card in a Carousel. */ export declare const CarouselButton: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=CarouselButton.d.ts.map