/**
* CubeMark - The CREATE SOMETHING Isometric Cube Logo Mark
*
* The core brand mark: an isometric cube with Canon face opacities.
* Supports multiple animation variants: reveal, pulse, and assemble.
*
* "Good design is as little design as possible" - Dieter Rams
*
* @example
*
*
*
*/
import type { BrandMarkProps } from '../types.js';
interface Props extends BrandMarkProps {
/** Visual variant: standard (Canon opacities) or mono (single color) */
variant?: 'standard' | 'mono';
}
declare const CubeMark: import("svelte").Component;
type CubeMark = ReturnType;
export default CubeMark;