import { IPrice } from './IPrice';
export interface ISubscriptionPriceEdge {
    cursor: string;
    node: IPrice;
}
