import { ReactNode } from 'react'; export type FooterProps = { 'data-testid'?: string; logo?: ReactNode; content?: ReactNode; copyRight?: string; socialMedia?: SocialMediaIconInterface; }; export type SocialMediaIconInterface = { instagram?: { url: string; }; facebook?: { url: string; }; twitter?: { url: string; }; github?: { url: string; }; linkedin?: { url: string; }; }; //# sourceMappingURL=types.d.ts.map