import type { BoxProps } from '@mui/material/Box'; import type { TypographyProps } from '@mui/material/Typography'; import type { TextFieldProps } from '@mui/material/TextField'; import type { FC } from 'react'; /** * Root container for the SocialLinks component. * Dark background with rounded corners and vertical flex layout. */ export declare const SocialLinksRoot: FC; /** * Row container for a single social link field. * Horizontal flex with consistent spacing and hover highlight. */ export declare const SocialLinkFieldRow: FC; /** * Wrapper for platform icon with fixed width for alignment. */ export declare const PlatformIcon: FC; /** * Platform label with fixed width for vertical alignment of inputs. * Hidden at xs breakpoint for responsive design. */ export declare const PlatformLabel: FC; /** * Styled text field for platform input. * Flex-grow to fill remaining space. */ export declare const PlatformInput: FC;