import { type FC, type PropsWithChildren } from 'react'; export declare const bigIntToString: (bi?: BigInt | string) => string; export declare const SetComp: FC>; export declare const MapComp: FC>; type TypeProps = PropsWithChildren<{ keyName: string | number; keys?: (string | number)[]; }>; export declare const TypeString: FC; export declare const TypeTrue: FC; export declare const TypeFalse: FC; export declare const TypeFloat: FC; export declare const TypeInt: FC; export declare const TypeBigint: FC<{ children?: BigInt; } & Omit>; export declare const TypeUrl: FC<{ children?: URL; } & Omit>; export declare const TypeDate: FC<{ children?: Date; } & Omit>; export declare const TypeUndefined: FC; export declare const TypeNull: FC; export declare const TypeNan: FC; export {};