import { PropsWithChildren } from 'react';
export type BadgeProps = PropsWithChildren<{
    amount?: number;
    top?: number | string;
    right?: number | string;
    bottom?: number | string;
    left?: number | string;
}>;
export declare function Badge({ children, amount, top, right, bottom, left }: BadgeProps): import("react/jsx-runtime").JSX.Element;
