/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import { ComponentProps } from 'react'; import { Box } from '../layout/Box'; declare const badgeStyles: { default: import("@crossed/styled").CrossedMethods<{ base: { paddingLeft: 8; paddingRight: 8; paddingTop: 8; paddingBottom: 8; marginTop: number; borderRadius: number; backgroundColor: "#F4F2FC" | "#141430"; }; }>; success: import("@crossed/styled").CrossedMethods<{ base: { backgroundColor: "#EDFFF6"; }; }>; warning: import("@crossed/styled").CrossedMethods<{ base: { backgroundColor: "#FFF0E6"; }; }>; error: import("@crossed/styled").CrossedMethods<{ base: { backgroundColor: "#FFE6E6"; }; }>; info: import("@crossed/styled").CrossedMethods<{ base: { backgroundColor: "#EEF6FF"; }; }>; }; type Variants = Exclude; type BadgeProps = ComponentProps & { variant?: Variants; }; export declare const Badge: import("react").NamedExoticComponent & { Text: import("react").NamedExoticComponent; }; export {}; //# sourceMappingURL=Badge.d.ts.map