import React from 'react'; import { SafeReactFC, WithCustomStyles, Gradient } from '../../@types'; export declare type NativeContainerProps = { radius?: 'rounded' | 'normal' | 'none'; background?: string; gradient?: Gradient; width?: string | number; height?: string | number; opacity?: number; padding?: string; margin?: string; image?: string; asGridParent?: boolean; asGridChild?: boolean; colSpan?: number; onClick?: React.MouseEventHandler; onMouseEnter?: React.MouseEventHandler; onMouseLeave?: React.MouseEventHandler; dataTestId?: string; } & Partial>; export declare type ContainerProps = SafeReactFC>;