export type Action = { label: string; onClick: () => void; }; interface RowActionsProperties { actions: Action[] | null; } export declare const RowActions: ({ actions }: RowActionsProperties) => import("react/jsx-runtime").JSX.Element | null; export {};