import type { ClientSetupStepConfig } from '../schemas/ClientSetupStepConfig'; import type { TabSetupStepConfig } from '../schemas/TabSetupStepConfig'; import type { SectionType } from '../schemas/SectionType'; /** * Client Setup Section */ export type ClientSetupSection = (ClientSetupStepConfig | TabSetupStepConfig) & { header?: string; secHeader?: string; type: SectionType; };