import * as React from 'react'; import { FlexProps } from './Flex'; import { HTMLProps } from 'react'; interface TypeProps extends FlexProps { footer: React.ReactNode; footerProps?: FlexProps & HTMLProps; } declare const FlexWithFooter: (props: TypeProps & React.HTMLProps) => React.JSX.Element; export default FlexWithFooter;