import { Property } from './Property';
export declare class SetProperty {
    variableName: string;
    property: Property;
    constructor(variableName: string, updateProperty: Property);
}
