/** * Audius API * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Remix } from './Remix'; /** * * @export * @interface RemixParent */ export interface RemixParent { /** * * @type {Array} * @memberof RemixParent */ tracks?: Array; } /** * Check if a given object implements the RemixParent interface. */ export declare function instanceOfRemixParent(value: object): value is RemixParent; export declare function RemixParentFromJSON(json: any): RemixParent; export declare function RemixParentFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemixParent; export declare function RemixParentToJSON(value?: RemixParent | null): any;