import type { mintRegistry } from './registry.js'; import type { Mint, RippleConfig } from './types.js'; /** * Material Design inspired ripple effect */ export declare function createRippleMint(defaultConfig?: RippleConfig): Mint; /** * Register the ripple mint. * Called by registerDefaultMints() - not at module level. */ export declare function registerRipple(registry: typeof mintRegistry): void;