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 {};
