export interface TabProps extends React.ComponentProps<"button"> { /** Value of associated panel */ value: string; /** Tab label */ children?: React.ReactNode; /** Content displayed on the right side of the label, for example, icon */ rightSection?: React.ReactNode; /** Content displayed on the left side of the label, for example, icon */ leftSection?: React.ReactNode; /** controls control color based on `variant` */ color?: "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | "neutral"; } export declare function Tab(props: TabProps): import("react").JSX.Element;