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;
