import React from "react"; export interface IFooterProps extends React.HTMLAttributes { buttonRow?: boolean; } export declare function Footer({ buttonRow, ...rest }: IFooterProps): JSX.Element;