import type React from "react"; export interface EasyopsEmptyProps { background?: string; description?: string; imageStyle?: React.CSSProperties; illustration?: IllustrationProps; noImage?: boolean; } export interface IllustrationProps { name: string; category?: string; } export interface BrickWrapperConfig { empty?: EasyopsEmptyProps; }