export interface LinearGradientProps { id?: string; startColor?: string; stopColor?: string; direction?: 'left-right' | 'right-left' | 'top-bottom' | 'bottom-top'; } export declare const LinearGradient: (props: LinearGradientProps) => any;