import { StringOrNumber } from '../../../types.ts'; import { CustomTypes } from '.'; type HandlerFunction = (input: StringOrNumber) => string; type CustomTypeObjectType = { [key: string]: HandlerFunction; }; export declare const barrierHandler: HandlerFunction; export declare const commaRemovalHandler: HandlerFunction; export declare const CustomTypeObject: CustomTypeObjectType; export declare const customHandlers: (type: CustomTypes, value: string | number) => string; export {};