import React from 'react';
import { ISection } from '../Section/Section';
import { IPropsAny } from '../types';
export interface ISectionAction extends ISection {
    text?: string;
    link?: string;
    to?: string;
    ButtonProps?: IPropsAny;
}
declare const Element: React.FC<ISectionAction>;
export default Element;
