import React from 'react'; import { StyledComponentClass } from 'styled-components'; import { TypographyProps } from '../Typography'; import { Theme } from '../types'; export interface SnackbarContentProps { children: React.ReactNode; type?: string; } interface TextComp extends StyledComponentClass & React.HTMLAttributes & TypographyProps, Theme, React.ClassAttributes & React.HTMLAttributes & SnackbarContentProps> { } declare const SnackbarContent: TextComp; export default SnackbarContent;