/** * @jsxRuntime classic * @jsx jsx */ import React from 'react'; import { jsx } from '@emotion/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) => jsx.JSX.Element; export default Panel;