UNPKG

@medalsocial/meda

Version:

Shared Meda UI shell and runtime package.

12 lines (11 loc) 493 B
import type { ReactNode } from 'react'; import type { EmailBuilderLabels } from './types.js'; interface BuilderLeftTabsProps { labels: EmailBuilderLabels; blocksContent: ReactNode; designContent?: ReactNode; envelopeContent: ReactNode; } /** Vertical tab strip + content panel for the left sidebar. */ export declare function BuilderLeftTabs({ labels, blocksContent, designContent, envelopeContent, }: BuilderLeftTabsProps): import("react/jsx-runtime").JSX.Element; export {};