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