/// declare type Props = { id?: string; title: string; description: string; link: string; state?: object; centeredText?: undefined; color?: string; bgcolor?: string; } | { id?: string; centeredText: string; link: string; state?: object; title?: undefined; description?: undefined; color?: string; bgcolor?: string; }; declare const DottedBlock: ({ id, title, description, centeredText, link, state, color, bgcolor, }: Props) => JSX.Element; export default DottedBlock;