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