import React from 'react'; import { LocalVariable } from '@vev/utils'; export type SilkeVariablesWrapperProps = { component?: T; value: string; formats?: string[]; variableType?: string; fullWidthWrapper?: boolean; templateVariable?: boolean; onChange: (value: string) => void; onVariableAdd?: (variable: LocalVariable) => Promise; onVariableEdit?: (key: string) => void; } & React.ComponentProps; export declare function SilkeVariablesWrapper({ component, formats, variableType, fullWidthWrapper, templateVariable, onVariableAdd, onVariableEdit, ...rest }: SilkeVariablesWrapperProps): import("react/jsx-runtime").JSX.Element; export declare namespace SilkeVariablesWrapper { var displayName: string; }