1 | import * as React from 'react';
|
2 | export interface FooterRowProps {
|
3 | children?: React.ReactNode;
|
4 | className?: string;
|
5 | style?: React.CSSProperties;
|
6 | onClick?: (e?: React.MouseEvent<HTMLElement>) => void;
|
7 | }
|
8 | export default function FooterRow({ children, ...props }: FooterRowProps): React.JSX.Element;
|