import Copy from './Copy.svelte'; export declare const copy: Copy; export declare const download: (url: string, name?: string) => void; export declare const s: (value: number | string | undefined) => "" | "s"; export declare const formatNumber: (value: number | undefined | null) => string; export declare const isNull: (value: unknown) => boolean; export declare const round: (value: number, precision?: number) => number; export declare const ellipse: (text: string, max: number) => string;