/// export interface GradientTextProps { /** * What property is this button for? */ webProperty: 'originprotocol' | 'ousd' | 'story'; /** * Children to wrap with Gradient styling */ children?: React.ReactNode; /** * Text to use with Gradient styling, comes before children if both are used */ text?: string; /** * Optional tuple of hex strings to use as gradients, beginning then middle then end */ gradients?: [string, string, string]; } export declare const GradientText: ({ webProperty, children, text, gradients }: { webProperty: 'originprotocol' | 'ousd' | 'story'; children?: React.ReactNode; text?: string | undefined; gradients?: string[] | undefined; }) => JSX.Element;