import { IllustrationAsset, BaseSvgAsset } from './types.js';
export type FlowchartWithBackgroundAsset = IllustrationAsset<BaseSvgAsset & {
    readonly name: 'FlowchartWithBackground';
}>;
/**
 * FlowchartWithBackground illustration asset
 * @example
 * ```tsx
 * import { Illustration } from '@payfit/unity-illustrations'
 * import FlowchartWithBackground from '@payfit/unity-illustrations/assets/FlowchartWithBackground'
 *
 * <Illustration
 *   illustration={FlowchartWithBackground}
 *   alt="FlowchartWithBackground illustration"
 *   size="md"
 * />
 * ```
 */
declare const FlowchartWithBackground: FlowchartWithBackgroundAsset;
export default FlowchartWithBackground;
