import React from 'react'; import { FlintTabPanel as FlintTabPanelElement } from '@getufy/flint-ui/tabs/flint-tabs'; /** * Tab Panel: content container shown when its corresponding tab is active. */ export interface FlintTabPanelProps extends React.HTMLAttributes { /** Identifier linking this panel to its corresponding tab. */ value?: string; } export declare const FlintTabPanel: React.ForwardRefExoticComponent>;