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