export interface BaseProps { token: string; numberOfRowsToStart: number; categories?: string[]; isThemeDark?: boolean; isLazyLoad: boolean; entriesToRemove?: string[]; ids?: string[]; isMediaTrained?: boolean; styleCallback?: (cssString: string) => void; } export interface GridProps extends BaseProps { numberOfColumnsToShow?: number; isTransparent?: boolean; isOverlay?: boolean; cardType?: 'block' | 'list' | 'tabular'; } export interface ListProps extends BaseProps { cardType?: 'list' | 'tabular'; } export interface BioProps extends Omit { expertId?: string; } export interface InTheNewsProps extends Omit { expertId: string; numberOfRowsToStart?: number; isLazyLoad?: boolean; } //# sourceMappingURL=_types.d.ts.map