import * as React from 'react'; export interface ActivityStripProps extends React.HTMLAttributes { tabs?: React.ReactNode; children: React.ReactNode; } declare function ActivityStrip({ tabs, children, className, ...props }: ActivityStripProps): import("react/jsx-runtime").JSX.Element; export interface ActivityStripTabProps extends React.ButtonHTMLAttributes { active?: boolean; children: React.ReactNode; } declare function ActivityStripTab({ active, className, children, ...props }: ActivityStripTabProps): import("react/jsx-runtime").JSX.Element; export { ActivityStrip, ActivityStripTab };