UNPKG

@atlaskit/renderer

Version:
17 lines (16 loc) 514 B
import React from 'react'; import { PanelType } from '@atlaskit/adf-schema'; import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory'; export interface Props { allowCustomPanels?: boolean; children?: React.ReactNode; localId?: string; panelColor?: string; panelIcon?: string; panelIconId?: string; panelIconText?: string; panelType: PanelType; providers?: ProviderFactory; } declare const Panel: (props: Props) => React.JSX.Element; export default Panel;