/// import { Theme, ThemeBackgroundType, ThemeFontVariant, ThemeIntent } from "../types"; export declare type CtSocialMediaCardIcons = "instagram" | "tiktok" | "linkedin" | "twitter" | "facebook" | "pinterest" | "youtube" | "website_1" | "website_2" | "website_3"; export declare type CtSocialMediaCardProps = { theme?: Theme; intent?: ThemeIntent; backgroundType?: ThemeBackgroundType; fontVariant?: ThemeFontVariant; className?: string; numberOfBookings?: number; hideNumberOfBookings?: boolean; disablePaddings?: boolean; socialMediaLinks: Record; hideSocialMediaLinks?: boolean; }; declare function CtSocialMediaCard({ intent, theme, fontVariant, className, numberOfBookings, hideNumberOfBookings, socialMediaLinks, backgroundType, disablePaddings, hideSocialMediaLinks, }: CtSocialMediaCardProps): JSX.Element; declare namespace CtSocialMediaCard { var defaultProps: { theme: Theme; fontVariant: ThemeFontVariant; classNames: undefined; backgroundType: ThemeBackgroundType; intent: ThemeIntent; numberOfBookings: number; hideNumberOfBookings: boolean; socialMediaLinks: {}; disablePaddings: boolean; hideSocialMediaLinks: boolean; }; } export default CtSocialMediaCard;