import { type StateViewProps, type StateViewStatus, type StateViewTone, type StateViewVariant } from "@/components/feedback/state-view"; export type DataStateStatus = Exclude; export type DataStateVariant = StateViewVariant; export type DataStateTone = StateViewTone; export type DataStateProps = Omit & { status: DataStateStatus; variant?: DataStateVariant; compact?: boolean; }; /** @deprecated Use StateView. */ declare function DataState({ status, variant, compact, ...props }: DataStateProps): import("react").JSX.Element; export { DataState };