import React from 'react'; import { ExternalStyles } from '../../styles'; import { Omit } from '../../util'; export interface TabsProps extends Omit, 'style'> { style?: ExternalStyles; } export declare function Tabs(props: TabsProps): JSX.Element;