import { FrancoButtonProps } from './components/FrancoButton/FrancoButton'; export interface Props { color: string; type: string; containLabel: boolean; fullSizeContent: boolean; title: string; content: string; labelContent: string; contentColor: string; // eslint-disable-next-line @typescript-eslint/no-explicit-any theme: any; background: string; width: string; labelTooltip: string; infoTooltip: string; buttons: FrancoButtonProps[]; hasBorder: boolean; }