import { CactusTheme } from '@repay/cactus-theme'; import PropTypes from 'prop-types'; import { CSSObject } from 'styled-components'; declare const statuses: readonly ["success", "warning", "error"]; export declare type Status = typeof statuses[number]; export declare const StatusPropType: PropTypes.Requireable<"error" | "success" | "warning">; export interface StatusProps { status?: Status | null; /** !important */ disabled?: boolean; } export declare const getStatusStyles: (p: StatusProps & { theme: CactusTheme; }) => CSSObject | undefined; export {};