import { CTabsProps } from '../../../../components/navigation/CTabs';
import { CommonComponentPropertys } from '../../componentProperty';

export declare const TabsComponentDef: {
    type: "Tabs";
    props: {
        items: ({
            value: string;
            label: string;
            isInitialValue: boolean;
        } | {
            value: string;
            label: string;
            isInitialValue?: undefined;
        })[];
    };
    state: string;
    icon: string;
    category: "navigation";
    component: (props: CTabsProps & CommonComponentPropertys) => import("react/jsx-runtime").JSX.Element;
    schema: import('../..').ExtendedObjectSchemaType;
    renderType: "navigation";
};
