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