import type { CommonStudioLayoutConfigProps, CommonStudioLayoutProps } from './types'; import { StudioLayoutDataPathFieldConfig } from './types/StudioDataPathFieldSchema'; export interface StudioLayoutDataPathFieldConfigProps extends CommonStudioLayoutConfigProps { } export interface StudioDataPathFieldProps extends CommonStudioLayoutProps> { onChange: (props: { value: string; }) => void; } export declare const StudioDataPathField: (({ className, value, onChange, ...rest }: StudioDataPathFieldProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; export default StudioDataPathField;