declare enum PUZZLE_TYPES {
    '2x2' = "2x2",
    '3x3' = "3x3",
    '4x4' = "4x4",
    '5x5' = "5x5",
    '6x6' = "6x6",
    '7x7' = "7x7",
    'Square-1' = "Square-1",
    'Pyraminx' = "Pyraminx",
    'Clock' = "Clock",
    'Megaminx' = "Megaminx"
}
export declare const getScramble: (puzzleType: PUZZLE_TYPES) => string;
export {};
