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