import React from "react";
export interface ViewTabProps {
    className?: string;
    /** Label of the tab. Displayed in the header. */
    label: React.ReactNode;
    children?: React.ReactNode;
}
export declare function ViewTab({ className, children }: ViewTabProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Tab.d.ts.map