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