import { ReactElement, ReactNode } from 'react'; import { BoxProps } from '../Box'; export declare enum CallOutVariant { info = "info", support = "support" } export type CallOutVariantKeys = keyof typeof CallOutVariant; export interface CallOutProps extends BoxProps { /** * The content that is going to be displayed */ children: ReactNode; /** * CallOut variant to use */ variant?: CallOutVariantKeys; } declare const CallOut: ({ children, variant, ...rest }: CallOutProps) => ReactElement; export default CallOut;