import type { JSX } from 'vue/jsx-runtime'; export type RowActionProps = { /** @deprecated use translation key instead */ label?: string; translationKey: string; color: string; value?: string; badgeWidget?: () => JSX.Element; }; export declare enum RowActionEnum { Add = "Add", Create = "Create", Print = "Print", PrintCustom = "PrintCustom", Export = "Export", Update = "Update", Details = "Details", Edit = "Edit", Delete = "Delete", Publish = "Publish", Duplicate = "Duplicate" } export declare const DefaultRowActions: Record;