import { ICandidate } from "../models/candidate.model"; import { ISocialLinks } from "../models/social-links.model"; export interface ISideBar{ title: string; candidate?: ICandidate; socialLinks?: ISocialLinks; }