import type { IconSource } from '@steeze-ui/svelte-icon'; import type { DatesFromToday, FeedItemStatus } from './types.js'; import { type DateValue } from '@internationalized/date'; export declare function toPascalCase(text: string): string; export declare function capitalize(text: string): string; export declare function resolveIcon(icon?: IconSource | string | undefined): Promise; export declare function getCountryName(code: string): string | undefined; export declare function getStatusType(status: string): FeedItemStatus; export declare function getScrollableContainer(element: HTMLElement): HTMLElement | undefined; export declare function scrollIntoTableView(element: HTMLElement): void; export declare function isInputFocused(): boolean; export declare function toCalendarDate(date: Date): DateValue; export declare function datesFromToday(): DatesFromToday;