import type { HTMLAttributesWithRootRef } from '../../types';
export interface GradientProps extends HTMLAttributesWithRootRef {
/**
* Тип градиента.
*/
mode?: 'tint' | 'default' | 'overlay';
/**
* Направление градиента.
*/
to?: 'top' | 'bottom';
}
/**
* @see https://vkui.io/components/gradient
*/
export declare const Gradient: ({ mode, to, ...restProps }: GradientProps) => React.ReactNode;
//# sourceMappingURL=Gradient.d.ts.map