import React, { Component, ReactNode } from 'react'; export interface ICardBuilderProps { description: ReactNode; title: ReactNode; control?: ReactNode; drawers?: ReactNode; id?: string; loading?: boolean; table?: ReactNode; testId?: string; titleId?: string; } export default class CardBuilder extends Component {}