interface RowActionProps { row: { action?: { label: string; page?: string; aria_suffix?: string; onAction?: Function; }; }; } declare const RowAction: ({ row }: RowActionProps) => import("react/jsx-runtime").JSX.Element | null; export default RowAction;