type $$ComponentProps = {
    tabId: string;
    class?: string;
    children?: import('svelte').Snippet;
};
/**
 * TabPanel
 *
 * Individual tab panel component for use within Tabs.
 *
 * @prop {string} tabId - Unique identifier for this panel (must match corresponding TabButton)
 * @prop {string} [className] - Additional CSS classes
 *
 * @slot default - Panel content
 */
declare const TabPanel: import("svelte").Component<$$ComponentProps, {}, "">;
type TabPanel = ReturnType<typeof TabPanel>;
export default TabPanel;
//# sourceMappingURL=TabPanel.svelte.d.ts.map