import { default as Card } from '../../Surfaces/Card';
type CardProps = React.ComponentProps<typeof Card>;
interface TabPanelsProps {
    selectedTab: string;
    activeTab: string;
    children: React.ReactNode;
    /** Optional base id used to construct the panel/card identifier */
    id?: string;
    /** Props forwarded to the underlying `Card` container */
    cardProps?: Omit<CardProps, "children">;
}
declare const TabPanels: React.FC<TabPanelsProps>;
export default TabPanels;
