import * as React from "react"; export declare type VariantType = "positive" | "negative" | "informative" | "cautionary" | "default"; export declare type BorderStyleType = "solid" | "dashed" | "none"; export declare type WellProps = { id?: string; automationId?: string; variant?: VariantType; borderStyle?: BorderStyleType; noMargin?: boolean; }; declare type Well = React.FunctionComponent; declare const Well: Well; export default Well;