import React from 'react';
import { TPaletteVersion } from '@onesy/style-react';
import { ISection } from '../Section/Section';
import { IWatch } from '../Watch/Watch';
export declare type ISectionWatch = ISection & {
    version?: 'regular' | 'analog' | 'modern' | 'minimal';
    color?: TPaletteVersion;
    WatchProps?: IWatch;
};
declare const Element: React.FC<ISectionWatch>;
export default Element;
