/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface DataTableSlotRecipeVariant { /** * @default "default" */ layout: "default" | "edge-to-edge" } type DataTableSlotRecipeVariantMap = { [key in keyof DataTableSlotRecipeVariant]: Array } type DataTableSlotRecipeSlot = "wrapper" | "table" | "emptyState" export type DataTableSlotRecipeVariantProps = { [key in keyof DataTableSlotRecipeVariant]?: ConditionalValue | undefined } export interface DataTableSlotRecipeRecipe { __slot: DataTableSlotRecipeSlot __type: DataTableSlotRecipeVariantProps (props?: DataTableSlotRecipeVariantProps): Pretty> raw: (props?: DataTableSlotRecipeVariantProps) => DataTableSlotRecipeVariantProps variantMap: DataTableSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [DataTableSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: DataTableSlotRecipeVariantProps) => DataTableSlotRecipeVariantProps } /** * Slot class created for the MFUI DataTable component. */ export declare const dataTableSlotRecipe: DataTableSlotRecipeRecipe