import React from 'react'; import { MarginProps, PaddingProps, PositionProps } from 'styled-system'; import { FlexItemProps, FlexOptionProps } from '../helpers/styled'; declare type FooterVariant = 'white' | 'gray' | 'dark'; interface FooterProps extends React.HTMLAttributes, FlexOptionProps, PaddingProps { logo?: string | React.ReactElement; variant?: FooterVariant; } interface FooterComponent extends React.FC { Logo: typeof FooterLogo; } declare const FooterLogo: import("styled-components").StyledComponent<"div", import("@repay/cactus-theme").CactusTheme, FlexItemProps & MarginProps>> & PositionProps>> & import("styled-system").WidthProps>, import("csstype").Property.Width> & import("styled-system").MinWidthProps>, import("csstype").Property.MinWidth> & import("styled-system").MaxWidthProps>, import("csstype").Property.MaxWidth> & import("styled-system").HeightProps>, import("csstype").Property.Height> & import("styled-system").MinHeightProps>, import("csstype").Property.MinHeight> & import("styled-system").MaxHeightProps>, import("csstype").Property.MaxHeight>, never>; export declare const Footer: import("styled-components").StyledComponent; export default Footer;