import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
interface ListPlaceholderProps extends ViewProps {
children?: ReactNode;
}
declare function ListPlaceholder(props: ListPlaceholderProps): JSX.Element;
export default ListPlaceholder;