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