import { BoxProps } from '@semcore/base-components'; import { Intergalactic } from '@semcore/core'; type IllustrationProps = BoxProps & { /** * Main color of the illustration **/ primaryColor?: string; /** * Secondary color of the illustration **/ secondaryColor?: string; /** * Changes background fill of the illustration **/ fill?: string; /** * Width of the illustration **/ width?: string | number; /** * Height of the illustration **/ height?: string | number; } declare const Illustration: Intergalactic.Component<'svg', IllustrationProps>; export default Illustration;