import React, { PropsWithChildren } from 'react'; type TContentProps = { className?: string; customEmpty?: React.ReactNode; customLoading?: React.ReactNode; }; export declare function Content({ className, children, customLoading, customEmpty, }: PropsWithChildren): React.JSX.Element; export {};