export interface ComputedProperty {
    /**
     *  The name of the computed property. Name of the computed property
     *  should be chosen such that it does not collide with any existing
     *  or future document properties.
     */
    name: string;
    query: string;
    [key: string]: any;
}
//# sourceMappingURL=ComputedProperty.d.ts.map