import { FC } from "react"; import { ReactNode } from "react"; declare type LifetimeProps = { children?: ReactNode; seconds: number; }; export declare const Lifetime: FC; export {};