@redocly/theme
Version:
Shared UI components lib
12 lines (11 loc) • 484 B
TypeScript
import React from 'react';
import type { JSX } from 'react';
import type { ResolvedNavItemWithLink } from '@redocly/config';
type DocumentationLayoutBottomProps = {
feedback: React.ReactNode;
nextPage?: ResolvedNavItemWithLink | null;
prevPage?: ResolvedNavItemWithLink | null;
className?: string;
};
export declare function DocumentationLayoutBottom({ feedback, nextPage, prevPage, }: React.PropsWithChildren<DocumentationLayoutBottomProps>): JSX.Element;
export {};