@ultraviolet/plus
Version:
Ultraviolet Plus
9 lines (8 loc) • 356 B
TypeScript
import type { RefObject } from 'react';
import type { NavigationProps } from './types';
type FooterProps = {
onToggleExpand: NavigationProps['onToggleExpand'];
contentRef: RefObject<HTMLDivElement | null>;
};
export declare const Footer: ({ onToggleExpand, contentRef }: FooterProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};