import { ParameterType, Point } from "./types";
export declare function parseParameterValue(value: string, type?: ParameterType): number | boolean | Point | string | undefined;
export declare function formatParameterValue(value: number | boolean | Point | string, type?: ParameterType): string;
