import * as React from 'react'; import '@vtmn/css-tabs/dist/index-with-vars.css'; import { VtmnTabsAlign, VtmnTabsSize } from './types'; export interface VtmnTabsProps extends React.ComponentPropsWithoutRef<'ul'> { /** * The alignment of the tabs. * @type {VtmnTabsAlign} * @defaultValue 'start' */ align?: VtmnTabsAlign; /** * The size of the tabs. * @type {VtmnTabsSize} * @defaultValue 'medium' */ size?: VtmnTabsSize; /** * The content to render inside the component. * @defaultValue undefined */ children?: React.ReactNode; } export declare const VtmnTabs: ({ className, children, ...props }: VtmnTabsProps) => JSX.Element; declare const MemoVtmnTabs: React.MemoExoticComponent<({ className, children, ...props }: VtmnTabsProps) => JSX.Element>; export default MemoVtmnTabs;