declare class PropString {
    /**
     * @description Get value of property in object by string
     */
    execute<T, R>(text: string, object: T, update?: R): R;
}

declare const propString: PropString;

export { propString as PropString };
