/**
 * Litty API
 *        Complete API documentation for the Litty platform.        ## Authentication       Most endpoints require authentication via Supabase JWT tokens.       Include the token in the Authorization header: `Bearer <token>`        ## API Structure       - **Contests**: Create and manage contests, entries, and settlements       - **Markets**: Manage prediction markets within contests       - **Transactions**: Handle financial transactions for contest entries and rewards       - **Wallet**: Manage user wallet balances (cashable, points, tickets)       - **Users**: User management and profiles       - **Leaderboards**: Competition rankings and scoring       - **Uploads**: File upload management       - **Shows**: TV show and episode management (admin only)        ## Response Formats       All endpoints return JSON responses with consistent error handling.       Error responses include `statusCode`, `message`, and `error` fields.
 *
 * 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.
 */
/**
 *
 * @export
 * @interface WaitlistTierDto
 */
export interface WaitlistTierDto {
    /**
     * Whether the tier is unlocked
     * @type {boolean}
     * @memberof WaitlistTierDto
     */
    isUnlocked: boolean;
    /**
     * Whether the tier is completed
     * @type {boolean}
     * @memberof WaitlistTierDto
     */
    isCompleted: boolean;
    /**
     * The percentage chance for early access
     * @type {number}
     * @memberof WaitlistTierDto
     */
    chanceForEarlyAccess: number;
    /**
     * Requirements to complete this tier
     * @type {Array<string>}
     * @memberof WaitlistTierDto
     */
    requirements: Array<string>;
    /**
     * Current progress for this tier
     * @type {object}
     * @memberof WaitlistTierDto
     */
    progress: object;
}
/**
 * Check if a given object implements the WaitlistTierDto interface.
 */
export declare function instanceOfWaitlistTierDto(value: object): value is WaitlistTierDto;
export declare function WaitlistTierDtoFromJSON(json: any): WaitlistTierDto;
export declare function WaitlistTierDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): WaitlistTierDto;
export declare function WaitlistTierDtoToJSON(json: any): WaitlistTierDto;
export declare function WaitlistTierDtoToJSONTyped(value?: WaitlistTierDto | null, ignoreDiscriminator?: boolean): any;
