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