import React from 'react';
import { TPaletteVersion } from '@amaui/style-react';
import { ISection } from '../Section/Section';
import { IMediaObject, IPropsAny } from '../types';
export interface ISectionCarouselItem {
    name?: any;
    description?: any;
    buttonText?: any;
    to?: string;
    link?: string;
    backgroundColor?: TPaletteVersion;
    backgroundGradient?: TPaletteVersion[];
    backgroundImage?: IMediaObject;
    backgroundVideo?: IMediaObject;
    overlay?: TPaletteVersion;
    overlayBlur?: number | boolean;
    themed?: boolean;
    propsName?: any;
    propsDescription?: any;
    propsButton?: any;
    propsButtonWrapper?: any;
}
export interface ISectionCarousel extends ISection {
    size?: 'small' | 'regular' | 'large';
    values?: ISectionCarouselItem[];
    fullHeight?: boolean;
    responsive?: boolean;
    ItemProps?: IPropsAny;
    CarouselProps?: IPropsAny;
}
declare const Element: React.FC<ISectionCarousel>;
export default Element;
