import { TabSize } from "./types";
type Props = {
    children: React.ReactNode;
    append?: React.ReactNode;
    className?: string;
    size?: TabSize;
    fullWidth?: boolean;
};
export declare const VuiTabs: ({ children, className, append, size, fullWidth }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
