/// <reference types="react" />
import { StudioPanelTemplatesProps as PublicStudioPanelTemplatesProps, TemplateItem } from '../../typeConfigs/templates';
import type { StudioLayoutPanelTemplatesConfig } from './types/StudioPanelTemplatesSchema';
import type { CommonStudioLayoutConfigProps, CommonStudioLayoutPanelProps } from './types';
export interface StudioLayoutPanelTemplatesConfigProps extends CommonStudioLayoutConfigProps<StudioPanelTemplatesProps, StudioLayoutPanelTemplatesConfig> {
}
export interface StudioPanelTemplatesProps extends Omit<CommonStudioLayoutPanelProps<StudioLayoutPanelTemplatesConfig>, 'onSelect'>, Pick<PublicStudioPanelTemplatesProps, 'onSelect'> {
    templates?: TemplateItem[];
}
export declare const StudioPanelTemplates: import("react").NamedExoticComponent<StudioPanelTemplatesProps>;
export default StudioPanelTemplates;
