/**
 * Interface to define text in each face of view cube
 */
export interface FaceNames {
    top: string;
    front: string;
    right: string;
    back: string;
    left: string;
    bottom: string;
}
/**
 * Default texts in each face of view cube
 */
export declare const DEFAULT_FACENAMES: FaceNames;
//# sourceMappingURL=faceNames.d.ts.map