import { FC, HTMLProps } from 'react';
import { GradientStyle, LayerComponentProps } from '../../types';
import { ImageContentProps } from '..';
export interface RootContentProps extends LayerComponentProps, Omit, 'color'> {
color: string | null;
gradientBackground: {
colors: string[];
style: GradientStyle;
} | null;
image?: ImageContentProps['image'] | null;
}
export declare const RootContent: FC;