/**
 * Commander Spellbook API
 * API for Commander Spellbook, the combo database engine for Magic: The Gathering
 *
 * The version of the OpenAPI document: 5.4.10
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * * `clockwise` - Clockwise
 * * `counterclockwise` - Counterclockwise
 * * `flip` - Flip
 * @export
 * @enum {string}
 */
export declare enum LayoutRotationEnum {
    Clockwise = "clockwise",
    Counterclockwise = "counterclockwise",
    Flip = "flip"
}
export declare function instanceOfLayoutRotationEnum(value: any): boolean;
export declare function LayoutRotationEnumFromJSON(json: any): LayoutRotationEnum;
export declare function LayoutRotationEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): LayoutRotationEnum;
export declare function LayoutRotationEnumToJSON(value?: LayoutRotationEnum | null): any;
export declare function LayoutRotationEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): LayoutRotationEnum;
