export declare function format(first: string, middle: string, last: string): string; export declare function getImageByAttribute(url: string, attr: string): number | HTMLImageElement; export declare function getImagePath(url: string, path?: string): string; export declare function getMediaPathFromMime(media: any, path?: string): any; export declare function stringSplit(url: string, separator: string): string[]; export declare function scrollToElementTop(elementId: string): void; export declare function getSocialMediaLink(type: string, text: string): string; export declare function copyToClipboard(element: any, text?: string): void; export declare function sortByDate(dates: any, key: string): any; export declare const isElementInViewport: (el: any) => boolean; export declare const isOverflown: ({ clientWidth, clientHeight, scrollWidth, scrollHeight }: { clientWidth: any; clientHeight: any; scrollWidth: any; scrollHeight: any; }) => boolean; export declare function getDateFormatted(format: any, dateString: any): any; export declare function getDayNumberSuffix(day: any): string; export declare function getAge(dateOfBirth: any): number; export declare function getAgeSlot(dateOfBirth: any): "18-40" | "41 - 55" | "56 and Above"; export declare function getSalarySlot(salaryString: any): "Below 5 Lacs" | "5-10 Lacs" | "11-15 Lacs" | "More than 15 Lacs"; export declare function getFinancialSupportSlot(financialSupportString: any): "Myself" | "Myself & Family"; export declare function getRiskSlot(riskString: any): "Safe Player" | "Risk Taker"; export declare const getAgeByDate: (dateString: any) => number; export declare const getCurrencyINR: (amount: any) => any;