import * as UI from "./"; type snippetNames = "Variable" | "Access" | "Colors" | "Label" | "LabelAlign" | "LabelClass" | "Identificator" | "WrapperClass" | "Disabled" | "EventHandlerArgument" | "IconsLib" | "Readonly" | "BitModeInfo" | "MinMaxStep" | ""; type $$ComponentProps = { snippet: snippetNames; component: UI.UIComponent; onPropertyChange: (updates: Partial<{ properties?: string | object; name?: string; access?: string; eventHandler?: UI.IUIComponentHandler; }>) => void; VARIABLE_OPTIONS?: { id: string; value: string; name: string; }[]; initialValue?: any; }; declare const CommonSnippets: import("svelte").Component<$$ComponentProps, {}, "">; type CommonSnippets = ReturnType; export default CommonSnippets;