import * as React from 'react'; import { HTMLProps } from 'react'; import { FlexProps } from '../Flex'; type EmptyContentProps = HTMLProps & FlexProps & {}; declare const EmptyContent: ({ children, className, style, ...flexProps }: EmptyContentProps) => React.JSX.Element; export default EmptyContent;