import { FC } from "react"; interface FooterRowProps { children?: React.ReactNode; className?: string; style?: React.CSSProperties; } declare const Row: FC; export default Row;