import React from "react"; import { ManagedClasses, TabPanelClassNameContract } from "@microsoft/fast-components-class-name-contracts-base"; import { TabsSlot } from "./tabs"; export declare type TabPanelManagedClasses = ManagedClasses; export declare type TabPanelUnhandledProps = React.HTMLAttributes; export interface TabPanelHandledProps extends TabPanelManagedClasses { /** * The slot identifying this component to the TabPanel component as a tab-panel * the default string passed must be "tab-panel" */ slot: TabsSlot.tabPanel | string; /** * The tab-panel active state */ active?: boolean; /** * The tab-panel content */ children?: React.ReactNode; } export declare type TabPanelProps = TabPanelHandledProps & TabPanelUnhandledProps;