import { ComponentProps, ScaleValue, VariantProps } from "@vitality-ds/system"; import React from "react"; import { BaseButton, BaseInner } from "./styled"; export declare type TruncatedContentProps = VariantProps & { children: React.ReactNode; /** * String that represents the background color of the component's containing element. Used to fade the gradient into the correct colour. * @default "$neutral1" */ gradientColor?: ScaleValue<"colors">; /** * The initial height of the content when truncated * @default "75px" */ initialHeight?: React.CSSProperties["maxHeight"]; /** * Option to change the button's text colour * @default "neutral" */ buttonTextColor?: ComponentProps["css"]["color"]; };