import { FC, PropsWithChildren, ReactNode } from "react"; export interface TabPaneProps { title: ReactNode; active?: boolean; value?: string; disabled?: boolean; className?: string; id?: string; } export declare const TabPane: FC>; //# sourceMappingURL=tabPane.d.ts.map