import React from 'react';
import { IBaseElement, IMediaObject } from '../types';
export interface ILinksItem {
    version?: 'primary' | 'secondary' | 'default';
    name?: any;
    url?: string;
    sensitivity?: string | boolean;
    share?: boolean;
    props?: any;
}
export interface ILinks extends IBaseElement {
    name?: any;
    short_description?: any;
    links?: ILinksItem[];
    cover?: IMediaObject;
    profile?: IMediaObject;
    share?: boolean;
    start?: any;
    end?: any;
    IconMore?: any;
    IconShare?: any;
    ShareProps?: any;
    ItemShareProps?: any;
    IconButtonProps?: any;
    IconProps?: any;
    NameProps?: any;
    ShortDescriptionProps?: any;
    LinkProps?: any;
    LinkTypeProps?: any;
}
declare const Element: React.FC<ILinks>;
export default Element;
