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