/** * Represents the possible states when data is empty. * - "notfound": No matching results found. * - "nodata": No data available to display. */ export type EmptyStateType = "notfound" | "nodata";