import * as React from 'react'; declare type Props = { onClick: (value: string) => void; className?: string; fullWidth?: boolean; centered?: boolean; currentValue?: string; color?: 'purple' | 'black'; compact?: boolean; children?: React.ReactNode; } & ({ outlined: true; narrow?: false; } | { outlined?: false; narrow?: boolean; }); export declare const Tabs: React.FC; export {};