/// <reference types="react" />
import { BlockManagerProps } from '../BlockManager';
import type { StudioLayoutPanelBlocksConfig } from './types/StudioPanelBlocksSchema';
import type { CommonStudioLayoutConfigProps, CommonStudioLayoutPanelProps } from './types';
export interface StudioLayoutPanelBlocksConfigProps extends CommonStudioLayoutConfigProps<StudioPanelBlocksProps, StudioLayoutPanelBlocksConfig> {
}
export interface StudioPanelBlocksProps extends CommonStudioLayoutPanelProps<Omit<StudioLayoutPanelBlocksConfig, 'blocks' | 'itemLayout'>>, Pick<BlockManagerProps, 'symbols' | 'search' | 'blocks' | 'itemLayout'> {
}
export declare const StudioPanelBlocks: import("react").NamedExoticComponent<StudioPanelBlocksProps>;
export default StudioPanelBlocks;
