@redocly/graphql-docs
Version:
Redocly GraphQL docs
10 lines (9 loc) • 362 B
TypeScript
import type { ReactNode } from 'react';
export interface PanelItemProps {
header?: string | ReactNode;
title?: string | ReactNode;
actions?: ReactNode[];
active?: boolean;
withCheckmark?: boolean;
}
export declare function PanelItem({ header, title, actions, active, withCheckmark }: PanelItemProps): import("react/jsx-runtime").JSX.Element;