import React from 'react';
import { TPaletteVersion } from '@amaui/style-react';
import { ISection } from '../Section/Section';
import { IMediaObject, IPropsAny } from '../types';
export interface ISectionBoxesItem {
    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;
    propsMain?: any;
    propsName?: any;
    propsDescription?: any;
    propsButton?: any;
    propsWrapperText?: any;
    propsActions?: any;
}
export interface ISectionBoxes extends ISection {
    size?: 'small' | 'regular' | 'large';
    values?: ISectionBoxesItem[];
    responsive?: boolean;
    ItemProps?: IPropsAny;
    ItemsProps?: IPropsAny;
}
declare const Element: React.FC<ISectionBoxes>;
export default Element;
