/** * PropertyMark - CREATE SOMETHING Property Identifier * * Displays property-specific marks (.io, .ltd, .space, .agency, .lms) * with support for full, abbreviated, and icon-only variants. * * "Good design is as little design as possible" - Dieter Rams * * @example * * * */ import type { PropertyMarkProps } from '../types.js'; interface Props extends PropertyMarkProps { /** Additional CSS classes */ class?: string; } declare const PropertyMark: import("svelte").Component; type PropertyMark = ReturnType; export default PropertyMark;