import { Props as TipProps } from './Tip.types';
interface Props {
    $wrap: boolean;
    pill?: TipProps['pill'];
    variant?: TipProps['variant'];
    attach?: TipProps['attach'];
    disabled?: TipProps['disabled'];
}
export declare const Tip: import("styled-components").StyledComponent<"div", any, Props, never>;
export {};
