///
import { SxProps, Theme } from '@mui/material';
import { SvgIconProps } from '@mui/material/SvgIcon';
interface CreditsIconProps {
color: string;
fontSize?: SvgIconProps['fontSize'];
sx?: SxProps;
}
export default function CreditsIcon({ color, fontSize, sx, }: CreditsIconProps): JSX.Element;
export {};