/** * CubeLoader - Cube-based Loading Spinner * * Brand-aligned loading indicator using the isometric cube mark. * Implements spin, pulse, and assemble animation variants per Canon motion tokens. * * "Good design is as little design as possible" - Dieter Rams * * @example * * * */ import type { LoaderProps } from '../types.js'; interface Props extends LoaderProps { /** Additional CSS classes */ class?: string; } declare const CubeLoader: import("svelte").Component; type CubeLoader = ReturnType; export default CubeLoader;