import React from 'react'; import { SubotInlineRevampContainerProps } from "./types"; type Props = Omit & { withoutSkeleton?: boolean; }; declare const SubotInlineRevampWithTheme: ({ onLoadFirstNode, withoutSkeleton, ...props }: Props) => React.JSX.Element; export default SubotInlineRevampWithTheme;