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