/**
 * 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 GetMe200Response
 */
export interface GetMe200Response {
    /**
     *
     * @type {string}
     * @memberof GetMe200Response
     */
    id?: string;
    /**
     *
     * @type {string}
     * @memberof GetMe200Response
     */
    email?: string;
    /**
     *
     * @type {string}
     * @memberof GetMe200Response
     */
    name?: string;
    /**
     *
     * @type {string}
     * @memberof GetMe200Response
     */
    nickname?: string;
    /**
     *
     * @type {string}
     * @memberof GetMe200Response
     */
    location?: string;
    /**
     *
     * @type {string}
     * @memberof GetMe200Response
     */
    gender?: GetMe200ResponseGenderEnum;
    /**
     *
     * @type {Date}
     * @memberof GetMe200Response
     */
    dateOfBirth?: Date;
    /**
     *
     * @type {string}
     * @memberof GetMe200Response
     */
    referralCode?: string;
    /**
     *
     * @type {boolean}
     * @memberof GetMe200Response
     */
    emailVerified?: boolean;
    /**
     *
     * @type {boolean}
     * @memberof GetMe200Response
     */
    hasCompletedOnboarding?: boolean;
    /**
     *
     * @type {boolean}
     * @memberof GetMe200Response
     */
    isWaitlisted?: boolean;
    /**
     *
     * @type {Date}
     * @memberof GetMe200Response
     */
    createdAt?: Date;
    /**
     *
     * @type {Date}
     * @memberof GetMe200Response
     */
    updatedAt?: Date;
}
/**
 * @export
 */
export declare const GetMe200ResponseGenderEnum: {
    readonly Male: "Male";
    readonly Female: "Female";
    readonly NonBinary: "NonBinary";
    readonly PreferNotToSay: "PreferNotToSay";
};
export type GetMe200ResponseGenderEnum = typeof GetMe200ResponseGenderEnum[keyof typeof GetMe200ResponseGenderEnum];
/**
 * Check if a given object implements the GetMe200Response interface.
 */
export declare function instanceOfGetMe200Response(value: object): value is GetMe200Response;
export declare function GetMe200ResponseFromJSON(json: any): GetMe200Response;
export declare function GetMe200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMe200Response;
export declare function GetMe200ResponseToJSON(json: any): GetMe200Response;
export declare function GetMe200ResponseToJSONTyped(value?: GetMe200Response | null, ignoreDiscriminator?: boolean): any;
