import React from 'react'; import { TPaletteVersion } from '@amaui/style-react'; import { ILine } from '../Line/Line'; import { IValueBreakpoints, IMediaObject, IPropsAny } from '../types'; export type ISize = 'extra_small' | 'small' | 'regular' | 'large' | 'extra_large' | 'extra_extra_large'; export interface ISection extends ILine { themed?: boolean; title?: string | Partial>; description?: string | Partial>; show?: boolean | Partial>; reveal?: boolean; backgroundColor?: TPaletteVersion; backgroundGradient?: TPaletteVersion[]; backgroundImage?: IMediaObject; backgroundVideo?: IMediaObject; overlay?: TPaletteVersion; overlayBlur?: number | boolean; size?: ISize | Partial>>; margin?: ISize | boolean | Partial>>; marginVertical?: ISize | boolean | Partial>>; padding?: ISize | boolean | Partial>>; maxWidth?: ISize | boolean | Partial>>; start?: any; end?: any; MainProps?: IPropsAny; TitleProps?: IPropsAny; DescriptionProps?: IPropsAny; HeaderProps?: IPropsAny; RevealProps?: IPropsAny; AdditionalProps?: IPropsAny; } declare const Section: React.FC; export default Section;