import React from 'react'; interface TabContainerProps { elevation?: number; overflow?: string; styles?: { root?: React.CSSProperties; container?: React.CSSProperties; }; onKeyDown?: (event: React.KeyboardEvent) => void; tabIndex?: number; /** The content of the component. */ children: React.ReactNode; } export declare function TabContainer(props: TabContainerProps): React.JSX.Element; export {};