import React from 'react'; export interface TabsProps { /** If `true`, the tabs will be centered. This property is intended for large views. */ centered?: boolean; /** The content of the component. */ children: React.ReactNode; /** Determines the color of the indicator. */ indicatorColor?: 'primary' | 'secondary' | 'error' | 'success' | 'warning' | string; /** Callback fired when the value changes. */ onChange?: (event: object, value: number) => void; /** * The value of the currently selected Tab. If you don't want any selected * Tab, you can set this property to false. */ value: any; } export declare const TabsDefaultProps: { centered: boolean; indicatorColor: string | undefined; }; /** * # 🗂 Tabs * A simple view that renders tabs. * * ## Usage * * ```jsx ``` */ export declare const Tabs: React.ComponentType;