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