import { PropsWithChildren, ReactElement } from 'react'; import CSS from 'csstype'; export interface FooterProps extends PropsWithChildren { background?: string; justify?: CSS.Property.JustifyContent; position?: CSS.Property.Position; } declare const Footer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLElement>, PropsWithChildren>>; declare type Footer = ReactElement; export default Footer;