import React from "react"; import { Empty as ShadcnEmpty, EmptyHeader as ShadcnEmptyHeader, EmptyTitle as ShadcnEmptyTitle, EmptyDescription as ShadcnEmptyDescription, EmptyContent as ShadcnEmptyContent, EmptyMedia as ShadcnEmptyMedia } from "src/shadcn/components/empty"; type EmptyProps = React.ComponentProps & { innerClassName?: string; }; declare const Empty: ({ innerClassName, ...props }: EmptyProps) => import("react/jsx-runtime").JSX.Element; declare const EmptyHeader: ({ className, ...props }: React.ComponentProps) => import("react/jsx-runtime").JSX.Element; declare const EmptyTitle: (props: React.ComponentProps) => import("react/jsx-runtime").JSX.Element; declare const EmptyDescription: (props: React.ComponentProps) => import("react/jsx-runtime").JSX.Element; declare const EmptyContent: ({ className, ...props }: React.ComponentProps) => import("react/jsx-runtime").JSX.Element; declare const EmptyMedia: (props: React.ComponentProps) => import("react/jsx-runtime").JSX.Element; export { Empty, EmptyHeader, EmptyTitle, EmptyDescription, EmptyContent, EmptyMedia, };