import * as react_jsx_runtime from 'react/jsx-runtime';
import { ControlType } from 'framer';

declare function Framer(props: {
    some: string;
}): react_jsx_runtime.JSX.Element;
declare const propertyControls: {
    some: {
        type: ControlType.String;
        defaultValue: string;
    };
};

export { Framer, propertyControls };
