import type { BoxProps } from "@twilio-paste/box"; import type { TabPrimitivePanelProps } from "@twilio-paste/tabs-primitive"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; export interface TabPanelProps extends HTMLPasteProps<"div"> { /** * Same as the HTML attribute. * * @type {TabPrimitivePanelProps["id"]} * @memberof TabPanelProps */ id?: TabPrimitivePanelProps["id"]; /** * The ID of the Tab component this Panel pairs with. * * @type {TabPrimitivePanelProps["tabId"]} * @memberof TabPanelProps */ tabId?: TabPrimitivePanelProps["tabId"]; children: React.ReactNode; /** * Overrides the default element name to apply unique styles with the Customization Provider. * * @default "HORIZONTAL_TAB_PANEL" or "VERTICAL_TAB_PANEL" * @type {BoxProps["element"]} * @memberof TabPanelProps */ element?: BoxProps["element"]; /** * Removes the default padding from the TabPanel. * * @type {"space0"} * @memberof TabPanelProps */ paddingTop?: "space0"; } declare const TabPanel: React.ForwardRefExoticComponent>; export { TabPanel }; //# sourceMappingURL=TabPanel.d.ts.map