import { FC } from "react"; export interface keepAmountTheme { base: string; spacing: string; } export interface AmountProps { children: number; } export declare const Amount: FC;