type $$ComponentProps = {
    value: string;
    class?: string;
    children?: import('svelte').Snippet;
};
/**
 * TabsContent
 *
 * Tab content panel component for use within Tabs.
 * This is an alias component that wraps TabPanel to maintain compatibility with BMS components.
 *
 * @prop {string} value - Unique identifier for this panel (must match corresponding TabsTrigger)
 * @prop {string} [className] - Additional CSS classes
 *
 * @slot default - Panel content
 */
declare const TabsContent: import("svelte").Component<$$ComponentProps, {}, "">;
type TabsContent = ReturnType<typeof TabsContent>;
export default TabsContent;
//# sourceMappingURL=TabsContent.svelte.d.ts.map