import React from "react"; import { VariantProps } from "tailwind-variants"; import { IconProps } from "../../icons"; import { FlexCenterProps } from "../FlexCenter"; import { tableRowSizeVariants } from "../Table"; export type CollectionLockupProps = { /** * Pass in a custom badge component if needed. Otherwise, renders a default badge when badge is present. */ badge?: React.ReactNode; name: string; /** * Decides whether or not to show the verified badge. */ isVerified?: boolean | null; /** * Decides whether or not to show the text overflow tooltip. */ disableTextOverflowTooltip?: boolean; } & FlexCenterProps & VariantProps; export declare const CollectionLockup: React.ForwardRefExoticComponent<{ /** * Pass in a custom badge component if needed. Otherwise, renders a default badge when badge is present. */ badge?: React.ReactNode; name: string; /** * Decides whether or not to show the verified badge. */ isVerified?: boolean | null; /** * Decides whether or not to show the text overflow tooltip. */ disableTextOverflowTooltip?: boolean; } & Omit, "height" | "width"> & import("../..").TextColorVariantProps & VariantProps>> & React.RefAttributes> & { Badge: React.ForwardRefExoticComponent, "fill" | "height" | "width"> & import("../..").FillVariantProps & { size?: number | `${string}%`; title?: string; fillAttribute?: React.CSSProperties["fill"]; } & { innerFill?: IconProps["fill"]; } & React.RefAttributes>; Text: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & { asChild?: boolean; } & VariantProps>> & import("../..").TextColorVariantProps & React.RefAttributes, "ref">, "children"> & { children?: (name: string) => React.ReactNode; } & React.RefAttributes>; }; //# sourceMappingURL=CollectionLockup.d.ts.map